I've tried using the following piece of script code (see below) and that seems to work nicely in IE. In FireFox however the dropdown object doesn't seem to exists when the beforeentereditmode exists.... any suggenstions to how I get hold of the dropdown in FireFox?
function cl_beforeentereditmode(gridid, cellid) {
//Lets add a OnFocus handler to the DropDown in the cell, so we can set its item color
var dropdown = ig_csom.getElementById(gridid + '_vl');
if (dropdown!=null)
ig_csom.addEventListener(dropdown, "focus", cl_dropdown_onfocus, true);
return false;
}
function cl_dropdown_onfocus() { //Lets set the color of each item in the DropDown
// Do my stuff
}
TIA
Søren