Hi,
I have a grid with couple of columns, but only column with check box is editable. I want that editable column in edit mode all the time.
With the following code, whenever the page postbacks, editable column turns into non-editable.
| protected void grdAnnouncements_PreRender(object sender, System.EventArgs e) |
| { |
| foreach (GridItem item in grdAnnouncements.MasterTableView.Items) |
| { |
| item.Edit = true; |
| } |
| } |
Any help is appreciated.