SmartClient Version: SNAPSHOT_v13.0d_2020-10-23/AllModules Development Only (built 2020-10-23)
and
SmartClient Version: v12.1p_2020-10-27/AllModules Development Only (built 2020-10-27)
Chrome 86.0.4240.111 (x86_64) on OSX
Hello, please try this test case:
You'll see that stopHover is not called when you leave a cell, or even the grid.
and
SmartClient Version: v12.1p_2020-10-27/AllModules Development Only (built 2020-10-27)
Chrome 86.0.4240.111 (x86_64) on OSX
Hello, please try this test case:
Code:
isc.ListGrid.create({ ID: "countryList", width:500, height:224, alternateRecordStyles:true, data: countryData, fields:[ {name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"}, {name:"countryName", title:"Country"}, {name:"capital", title:"Capital", showIf:"false"}, {name:"continent", title:"Continent"} ], canReorderFields: true, stopHover: function(){ isc.logEcho("stopHover"); } })
Comment