This question is locked. New answers and comments are not allowed.
Hi,
I have a partial view that contains a grid as follows:
The partial view is loaded via some jQuery and loads successfully. Unfortunately, when I try and sort or move to the next page, the icons in the last column dissapear. Could somebody tell me why this is happening?
Thanks,
Rob
I have a partial view that contains a grid as follows:
@{Html.Telerik().Grid(Model) .Name("Test") .Columns(columns => { columns.Bound(e => e.Test1).Width(80); columns.Bound(e => e.Test2).Width(50); columns.Bound(e => e.Test3).Width(50); columns.Template(@<text> <img src="../../images/information.png" alt="Information" style="cursor: pointer;" onclick="Display('@item.ID');" /> </text>); }) .DataBinding(dataBinding => dataBinding.Ajax().Select("Get", "Test")) .Pageable(paging => paging.PageSize(20)) .Sortable() .Filterable() .Render();}The partial view is loaded via some jQuery and loads successfully. Unfortunately, when I try and sort or move to the next page, the icons in the last column dissapear. Could somebody tell me why this is happening?
Thanks,
Rob