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
- 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
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); }
Thanks
Comment