This question is locked. New answers and comments are not allowed.
I am using the latest release (2010.3.1318). I have grid that implements a client selection function and grouping. The client selection works fine until the grid is grouped. Upon grouping the click event is working but there is no data in passed.
Grid Helper
Any help is appreciated!
Grid Helper
<%: Html.Telerik().Grid<AccountList>()
.DataBinding(dataBinding => dataBinding.Ajax().Select("_IndexBinding", "Home", new { Area = "Account" }))
.Name("Accounts")
.Columns(columns =>
{
columns.Bound(p => p.UserID).Hidden(true);
columns.Bound(p => p.DisplayName);
columns.Bound(p => p.Email);
columns.Bound(p => p.FirstName);
columns.Bound(p => p.LastName);
columns.Bound(p => p.AccountType);
columns.Bound(p => p.Status);
})
.Pageable()
.Sortable(sorting => sorting.SortMode(GridSortMode.MultipleColumn).OrderBy(sortOrder => sortOrder.Add(o => o.DisplayName).Ascending()))
.Filterable()
.Groupable()
.Selectable()
.ClientEvents(events => events.OnRowSelect("Grid_onRowSelect"))
%> Javascript
<%: Html.Telerik().ScriptRegistrar() %>
<script type="text/javascript">
function Grid_onRowSelect(e) {
window.location = '<%: ResolveUrl("~/Account/Manage/") %>' + e.row.cells[0].innerHTML;
}
</script>
Any help is appreciated!