I am trying to replace an existing datagrid with an Ultrawebgrid, but need to be able to check a checkbox from the server side. I can't do it in Javascript as it relies on only checking specific rows. I have tried setting the value of the cell to be true with a checkbox type column, but this does not seem to be doing anything.
Has anyone done a similar thing and if so how did they manage to set the checkbox?Kind regards,
Simon
Thanks for getting back to me. It appears that i was doing it correctly, but the previous developer was then rebinding the control after setting the checkbox values. Kind regards,
I did it in the _Initializerow Event like this
e.Row.Cells.FromKey("1WeekAvgChk").Value = "false"
I hope that helps. Good luck!