This question is locked. New answers and comments are not allowed.
Can someone PLEASE Tell me why the damn command buttons aren't rendering?
I have searched the forums high and low, and the documentation (ha!) and the uber-informative "demos"
I still can't figure out
1. why the command button column does not render - NOTHING in the documentation sheds any light on this
2. how can one specify which method gets executed when they click the command button - i have several grids under one controller so
public ActionResult SelectionServerSide(string id) isn't going to work
here is the code of my grid. nothing revolutionary - just doesn't work
RAD ceases to be RAPID when you have to spend days combing forums to get basic functionality
I have searched the forums high and low, and the documentation (ha!) and the uber-informative "demos"
I still can't figure out
1. why the command button column does not render - NOTHING in the documentation sheds any light on this
2. how can one specify which method gets executed when they click the command button - i have several grids under one controller so
public ActionResult SelectionServerSide(string id) isn't going to work
here is the code of my grid. nothing revolutionary - just doesn't work
Html.Telerik().Grid(Model) .Name("Grid") .Columns(columns => { columns.Command(commands => commands.Select()).Title("Select"); columns.Bound(o => o.ProviderRecruitment_ID).Width(30).Title("ID"); columns.Bound(o => o.Status).Width(120).Title("Recruit Status"); columns.Bound(o => o.Recruiter).Width(80).Title("Recruiter"); columns.Bound(o => o.First_Name).Width(120).Title("First Name"); columns.Bound(o => o.Last_Name).Width(120).Title("Last Name"); }) .Scrollable(scrolling => scrolling.Enabled(true)) .Sortable(sorting => sorting.Enabled(true)) .Pageable(paging => paging.Enabled(true)) .Filterable(filtering => filtering.Enabled(true)) .Footer(true) .Editable(settings => settings.Enabled(true)) //.ToolBar(commands => commands.Insert()) .DataKeys(keys => keys.Add(c => c.ProviderRecruitment_ID))RAD ceases to be RAPID when you have to spend days combing forums to get basic functionality