This question is locked. New answers and comments are not allowed.
Every now and again one of my grids will simply “loose” all of its rows. The grid is on a tab and so if I select another tab and then return to the tab with the grid the UI will display the rows again. Any idea as to what is going on here?
Environment
IE version 8.0.7601.17514
MVC 3
Telerik Extensions for ASP.NET MVC Q2 2011
See attached screen shots.
Environment
IE version 8.0.7601.17514
MVC 3
Telerik Extensions for ASP.NET MVC Q2 2011
<
div
id
=
"user_collection_to_add_from"
>
<
h3
>Add Temporary User</
h3
>
@(Html.Telerik().Grid<
GCSAdminPoco.UserInfo
>()
.Name("UsersToAddToWorkgroupGrid")
//.Editable(editing => editing.Mode(GridEditMode.PopUp))
.DataKeys(dataKeys =>
{
dataKeys.Add(k => k.ID);
})
.DataBinding(dataBinding => dataBinding
.Ajax()
.Select("SelectAllUsers", "User")
)
.Columns(columns =>
{
columns.Bound(c => c.ID).Hidden(true);
columns.Bound(c => c.DisplayName).Title("User");
})
.ClientEvents(events => events.OnRowSelect("onRowSelectedForUser"))
//.ClientEvents(events => events.OnDelete("onDeleteForAttributeCollection"))
//.ClientEvents(events => events.OnDataBound("onDataBoundForAttributeRefresh"))
.Selectable()
.Scrollable(scrolling => scrolling.Height("155px"))
.Filterable(filtering => filtering.Enabled(true))
.Sortable()
//.Pageable(pager => pager.PageSize(10))
)
</
div
>
See attached screen shots.