Hi,
i am using BoundcheckboxField in webdatagrid. i want some checkbox ReadOnly and some of them
editable, how can i do this?
Hi Mypost,
You should do this similarly to how make some cells in a column read-only. You probably should just handle valueChanging client event on editing core and for the rows you want readonly for this column, set args.set_cancel(true);
regards,David Young
Thanks for reply.
can you show me any example?