Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Dec 04, 2009 02:23
open dhtmlx forum
where we add the below code

As per yourv answer below is

combo provides onCheck event. It occurs when option checkbox is clicked:

combo.attachEvent("onCheck",function(value,state){

/*your code here*/

return true

})

where i have add the function in my php file or dhtmlxcombo_extra.js file or sampl.html file

plaese reply me so i will add this code in my page
Answer posted by Alex (support) on Dec 04, 2009 02:31

>> here i have add the function in my php file or dhtmlxcombo_extra.js file or sampl.html file

The code should be added on the page where combo is initialized after the initialization. 

combo = new dhtmlXCombo(...);

combo.attachEvent("onCheck",function(value,state){ 

/*your code here*/ 

return true 

})