or
<Menu CssClass="RadMenu_Menu"> <Group Flow="Horizontal"> <Item Text="New" ImageURL="~/PresentationLayer/Images/Menu/Default/new.gif" /> <Item Text="Delete Budget Split" ImageURL="~/PresentationLayer/Images/Menu/Default/delete.gif" /> <Item Text="More Options" ImageURL="~/PresentationLayer/Images/Menu/Default/moreDown.gif" > <Group Flow="Vertical"> <Item Text="Edit" ImageURL="~/PresentationLayer/Images/Menu/Default/edit.gif" /> <Item Text="Refresh List" ImageURL="~/PresentationLayer/Images/Menu/Default/redo.gif" /> </Group> </Item> </Group> </Menu> 
Hi everyone,
I have a radgrid with 3 checkboxes on it. When it loads it has many rows. For some of the rows the check boxes are enabled and for other they are disabled.
My problem is though I don't know where to put the intelligence that determines this. That is, I don't know what event to use Load, init, something else (render perhaps)? I need the user to be able to be able to see it every time the the page loads and when they postback.
I would appreciate any advice/suggestions/simple code-samples that you may be able to offer.
Cheers,
Al.

... <telerik:GridDateTimeColumn SortExpression="DateUpdated" DataType="System.DateTime" HeaderText="Updated" DataField="DateUpdated" UniqueName="DateUpdated" DataFormatString="{0:dd/MM/yyyy}" ReadOnly="true"> </telerik:GridDateTimeColumn> ... function testForEnter(sender, args) { if (event.keyCode == 13) { event.keyCode=9; } }foreach (GridItem item in RadGrid1.MasterTableView.DetailTables[0].DetailTables[0].Items) { item.Edit = true; } RadGrid1.MasterTableView.DetailTables[0].DetailTables[0].Rebind();