Hi all!
I have a lil problem with the grouped grid. In my grid I have a checkbox column, which I use to get the checked rows from the grid. It works fine with the normal grid. But when I group the rows against any column the checking a checkbox gives a javascript error "'Element.id' is null or not an object". This error is coming in the javascript function "igtbl_cellClickDown". So I am not able to get the checked row from the grid.
Any idea whats goin wrong here?
Thanks,
Charuk
I have faced same problem but in other context.
I am using Ultra WebGrid Version 7.3.
In my WebGrid, I have used a checkbox column. I have written following javascript function to provide select all functionality on a button click using javascript -
var objGrid = igtbl_getGridById(gridID);
{
//Check for Checkbox Column Type
}//if
}//for
It working fine if there is no grouping applied for columns. but once i have applied the grouping , objGrid.Rows.getRow(i).getCell(colIndex) always return null. it didn't get cell object at all.
Any Idea ?
Thanks