Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
infragistics webdatagrid checkbox partial
posted

Hi,

I am using infragistics web datagrid. I have set auto generate columns to false. And adding 20 blank rows to the grid from code behind. Then using javascript method to loop through all columns all rows to set the values of each column.

eg: grid.get_rows().get_row(i).get_cell(0).set_value(false);

There is one checkbox column on grid. If the value of the column is false; When the grid is loaded first time it displays blank checkbox. But when a postback occurs, the checkbox UI is changed to partial. (blue filled checkbox). When I do grid.get_rows().get_row(i).get_cell(0).get_value() it shows correctly, i.e. false. but not sure why it shows partial.