Hi,
Just noticed that setting ListGrid.setWrapHeaderTitles(true) disables ShowClippedHeaderTitlesOnHover.
It can be reproduced in showcase example http://www.smartclient.com/smartclie...itlesNewSample
Just shrink Capital column and move cursor over the title - no hover shown.
Then comment out
// wrapHeaderTitles:true
and test it again. This time hover is shown.
Is it intentional?
Thanks,
MichalG
Just noticed that setting ListGrid.setWrapHeaderTitles(true) disables ShowClippedHeaderTitlesOnHover.
It can be reproduced in showcase example http://www.smartclient.com/smartclie...itlesNewSample
Code:
isc.ListGrid.create({
ID: "countryList",
height:224, width:380, alternateRecordStyles:true,
autoFitWidthApproach:"both",
wrapHeaderTitles:true,
headerHeight:40,
canSort:false,
headerAutoFitEvent:"doubleClick",
leaveHeaderMenuButtonSpace:false,
data: countryData,
fields:[
{name:"countryCode", title:"Flag Thumbnail", cellAlign:"center",
type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
{name:"countryName", title:"Country of Origin"},
{name:"capital", title:"Capital"},
{name:"continent", title:"Continent"}
]
})
Then comment out
// wrapHeaderTitles:true
and test it again. This time hover is shown.
Is it intentional?
Thanks,
MichalG
Comment