This question is locked. New answers and comments are not allowed.
I have to many grid on my project, some grids send GET request some grids send POST request when I click column name for ordering.
All my grids creates like belows ;
| <%= Html.Telerik().Grid(Model) |
| .Columns(columns => |
| { |
| columns.Add(o => o.CustomerName); |
| columns.Add(o => o.MicrosVersion); |
| columns.Add(o => o.PosSystem); |
| columns.Add(o => o.HasDbs); |
| columns.Add(o => o.UpdateTime); |
| columns.Add(o => o.LastBackup); |
| columns.Add(o => o.CheckUpdTime); |
| }) |
| .DataBinding(dataBinding => dataBinding.Ajax().Select("CustomerList", "Customer")) |
| .Name("gridCustomerList") |
| .Sortable() |
| .Pageable(p=>p.PageSize(15)) |
| .Filterable() |
| .Groupable() |
| .Ajax(ajax => ajax.Action("AjaxCustomerList", "Customer") |
| ) |
| %> |
you can see firebug images as attachments
Have any idea ?
Thanks