Hi
There is an issue with the filter editor, at least on list grids in Chrome, doesn't seem to occur in IE9. If you have text in the filter that is longer than can be displayed, hover text is supposed to show the entire text when you hover the mouse over the filer cell.
If you move your mouse pointer into the filter cell from above, the hover text will appear. However, if you move the mouse pointer into the filter cell from below, the hover text does not appear.
This can be shown in the SC feature explorer here
http://smartclient.com/docs/9.0/a/sy...html#linkImage
Replace the code with this
and hit 'Try it'. Now place a long piece of text into the 'Country' column. You can then observe the described behaviour.
regards,
Colin.
There is an issue with the filter editor, at least on list grids in Chrome, doesn't seem to occur in IE9. If you have text in the filter that is longer than can be displayed, hover text is supposed to show the entire text when you hover the mouse over the filer cell.
If you move your mouse pointer into the filter cell from above, the hover text will appear. However, if you move the mouse pointer into the filter cell from below, the hover text does not appear.
This can be shown in the SC feature explorer here
http://smartclient.com/docs/9.0/a/sy...html#linkImage
Replace the code with this
Code:
isc.ListGrid.create({ ID: "countryList", width:300, height:224, cellHeight:24, alternateRecordStyles:true, data: countryData, showFilterEditor: true, fields:[ {name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false}, {name:"countryName", title:"Country"}, {name:"article", title:"Info", type: "link", width:50, align:"center", linkText:isc.Canvas.imgHTML("other/openbook.png",24,24) } ] })
regards,
Colin.
Comment