This question is locked. New answers and comments are not allowed.
Hi All,
I encounter the same problem with this article http://www.telerik.com/community/forums/aspnet-mvc/grid/command-button-only-calling-select-data-binding-method.aspx
The problem is invoked that the user surf the page with IE, Chrome browsers in the windows server.
If the user surf the page with browsers in windows 7, the page is working fine.
Could anyone can help me to figure out this problem?
Thank You
Tim
The following is my code:
I encounter the same problem with this article http://www.telerik.com/community/forums/aspnet-mvc/grid/command-button-only-calling-select-data-binding-method.aspx
The problem is invoked that the user surf the page with IE, Chrome browsers in the windows server.
If the user surf the page with browsers in windows 7, the page is working fine.
Could anyone can help me to figure out this problem?
Thank You
Tim
The following is my code:
<div class="header-title"><%: Model.Title %></div><div class="header-desc"><%: Model.Description %></div><% Html.Telerik().Grid(Model.Data) .Name("MasterGrid") .DataKeys(keys => keys.Add(o => o.LookUp_Id)) .Columns(columns => { columns.Command(cmds => { cmds.Edit().ButtonType(GridButtonType.Image); }).Width(90).Title("Action"); columns.Bound(o => o.LookUp_Description).Title(Model.FieldName); columns.Bound(o => o.IsDeprecated).Width(80).Title("Deprecated").Sortable(false); columns.Bound(o => o.LookUp_Id).Hidden(); columns.Bound(o => o.Master_File_Type_Id).Hidden(); }) .ToolBar(cmds => cmds.Insert()) .DataBinding(binding => { binding.Server().Select("SelectMasterData", "Admin"); binding.Server().Insert("InsertMasterData", "Admin"); binding.Server().Update("EditMasterData", "Admin"); }) .Sortable(sorting => sorting.Enabled(true)) .Pageable(paging => paging.Enabled(true).PageSize(10)) .Filterable(filtering => filtering.Enabled(true)) .Resizable(resizing => resizing.Columns(true)) .Reorderable(reorder => reorder.Columns(true)) .Scrollable(scrolling => scrolling.Enabled(true).Height(335)) .Render();%>