Categories | Question details Back To List | ||
events on a dhtmlXGridFromTable Hello, I'm trying to adde events on a dhtmlXGridFromTable grid. The following hrml doesn't work,could provide me some help? regards
<script> function doOnRowSelected(){ var mygrid2 = new dhtmlXGridFromTable('tblToGrid'); </script>
<tr> <td type="ro">Column 1</td> <tr> Answer posted on Jan 17, 2008 08:54 Grid can be initialized from HTML table a) by command dhtmlXGridFromTable b) automatically by using dhtmlxGrid css class In you case both methods used, so grid initialized two times - which can cause not predictable problems , to resolve problem just remove class="dhtmlxGrid" from source table. |