Reputation: 61
In ColdFusion 2016, for this CFGRID example a double click on a row does nothing. Everything else seems to work, just having an issue adding the listener.
https://www.sitepoint.com/applications-coldfusion-8/
A colleague confirmed it does work in CF10 so I assume the ExtJS has changed. Anyone know how to do this in CF2016?
function initGrid(){
var grid = ColdFusion.Grid.getGridObject("aaaGrid");
grid.on("rowdblclick", showAAAForm);
}
Upvotes: 0
Views: 115