Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Santosh on Nov 22, 2007 21:58
open dhtmlx forum
Regarding DHTMLX grid cell properties

I want to display three check boxes in on single cell.I have done it using clist.
In that i want to have one small pop up when user clicks in checkbox.
How i can acheive this??
Answer posted on Nov 23, 2007 03:38
You can modify code of existing excell, or create new one, where any functionality may be implemented in desired way.

In dhtmlxgrid_excell_clist.js you can locate next string
    text+="<div><input type='checkbox' checked='true' /><label>"+a[i]+"</label></div>";
this is code which generate checkbox, you can add any onclick event handlers to it, to provide your custom functionality.