Click here to Skip to main content
15,891,687 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:

I add the checkbox in a gridview using

datatable dt = new datatable;

dt.column.add("Check",type(Boolean));

this can create checkbox but cannot able to check it at runtime

Posted

1 solution

The GridView is probably set to readonly. Make that column writable.
 
Share this answer
 
Comments
amaljosep 8-Mar-13 1:02am    
how to make the column as writable?
AspDotNetDev 8-Mar-13 1:16am    
Read the documentation, Google, or maybe use Intellisense to figure it out. If you don't make any progress that way, create a new question and ask there.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900