[FIXED] [1.6] Header Group Column layout bug

Page 2 of 2 FirstFirst 12
  1. #11
    It has been fixed in SVN and will be included in v1.6 release.

    Please add the following fix. Thanks for the report.

    Fix
    <ext:ResourcePlaceHolder runat="server" Mode="ScriptFiles" />
    
    <script type="text/javascript">
        Ext.ux.grid.ColumnHeaderGroup.prototype.viewConfig.getColumnWidth = function(column) {
            var columnWidth = this.cm.getColumnWidth(column),
                borderWidth = this.borderWidth;
            
            if (Ext.isNumber(columnWidth)) {
                if (Ext.isBorderBox || (Ext.isWebKit && !Ext.isSafari2 && !Ext.isChrome)) {
                    return columnWidth + "px";
                } else {
                    return Math.max(columnWidth - borderWidth, 0) + "px";
                }
            } else {
                return columnWidth;
            }
        }
    </script>
  2. #12
    Quote Originally Posted by Daniil View Post
    I am able to reproduce the problem in Chrome only. Can you confirm?
    Yes. I tested only in Google Chrome
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Customizing Header Group Style
    By karthik.arian03 in forum 1.x Help
    Replies: 4
    Last Post: Apr 01, 2011, 3:09 PM
  2. [CLOSED] Change text in header group column.
    By pdcase in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Mar 09, 2011, 3:44 PM
  3. [CLOSED] [1.0] Grid column header group - span multiple rows
    By Neil_Walters in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 14, 2011, 11:11 PM
  4. Gridpanel + Group Header plugin
    By Birgit in forum 1.x Help
    Replies: 2
    Last Post: Nov 11, 2010, 9:31 AM
  5. ContextMenu on GridPanel Group header
    By Cester in forum 1.x Help
    Replies: 0
    Last Post: Apr 21, 2009, 9:12 AM

Posting Permissions