Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Listgrid frozen column cause cellHoverComponent display wrong fieldName

    Hi SC Team. I wanted to know is it a known bug.
    The thing i wanted to do here was when hover on specific unfrozen column (other frozen column also existed in the grid, i found out that to get the column number value is not right.
    So i try again with the online demo/example provided.. and the behavior is the same.

    1. the SmartGWT or SmartClient version and browser version(s) involved;
    - SmartClient : example as in the link http://www.smartclient.com/#simpleFreeze (Firefox 6.0)

    2. for a server-side problem, the complete logs generated during processing of the request;
    - -

    3. for a client-side problem, the contents of the Developer Console (see FAQ for usage);
    - -

    4. if there is a JavaScript error, the stack trace logged in the Developer Console (from Internet Explorer if possible); and
    - -

    5. sample code.
    - in the example i add this codes
    Code:
        canHover: true,
        showHover: true,
        showHoverComponents: true,
        getCellHoverComponent : function (record, rowNum, colNum) {
                
                var fieldName = this.getFieldName(colNum);
                alert(fieldName);
        }
    - in conclusion the colNum value is not correct with the hovering action (hover category (colNum suppose to be 1 but display 0 which is itemName)

    Thanks
    Last edited by gtr_ommar; 21 Aug 2011, 22:01. Reason: Comments

    #2
    We've made a change to resolve this issue - the change will show up in nightly builds on the 8.1.x branch going forward

    Comment

    Working...
    X