Combo Cell Validation in Firefox

I am using dhtmlxSuite_2009Rel1_pro_90226 with a grid and a combo column.



I am also using a dataprocessor with dp.setVerificator(12); to verify a selection in the combo column.



I load the combo as follows:



var custodianCombo = equipGrid.getColumnCombo(12);

custodianCombo.loadXML(“xml/getCustodianList.jsp”,function(){equipGrid.load(“xml/getEquipmentGrid.jsp”,function(){equipGrid.refreshFilters();},“xmlA”);});



Everything works fine in IE8 However in Firefox as soon as i change the combo it no longer validates. no mater what I select.



My XML for the combo is as follows:





Office 1





Office 2







how can i get this to work in firefox?



setVerificator method require 2 parameters:
ind - column index (0 based)
verifFunction - function (object) which should verify cell value (if not specified, then value will be compared to empty string). Three arguments will be passed into it: value, row ID and column index

To validate column with combo you should use:
dp.setVerificator(COLUMN_INDEX,not_empty)


function not_empty(value){
return value!="";
}

Please find more information here dhtmlx.com/dhxdocs/doku.php?id=d … erificator