Hi Isomorphic,
please see this sample and change to code to:
	As you can see the column title moves on hovering. Tested online with SNAPSHOT_v11.1d_2017-03-24 and GC57.
Asides from this I really like the feature. It's going to make my application better to understand.
Best regards
Blama
					please see this sample and change to code to:
Code:
	
	isc.ListGrid.create({
    ID: "countryList",
    height:224, width:380, alternateRecordStyles:true,
    autoFitWidthApproach:"both",
    wrapHeaderTitles:true,
    headerHeight:40,
    headerAutoFitEvent:"doubleClick",
    leaveHeaderMenuButtonSpace:true,
    sortField: "countryName",
    data: countryData,
    fields:[
        {name:"countryCode", title:"Flag Thumbnail", cellAlign:"center",
         type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
        {name:"countryName", title:"Country of Origin", width:80},
        {name:"capital", title:"Capital"},
        {name:"continent", title:"Continent"}
    ]
})
Asides from this I really like the feature. It's going to make my application better to understand.
Best regards
Blama

Comment