We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d98b44 commit b8f3ae0Copy full SHA for b8f3ae0
grid/grid-odata-example/OdataSample/OdataSample/Views/Home/Index.cshtml
@@ -18,6 +18,7 @@
18
.Filterable()
19
.HtmlAttributes(new { style = "height:650px;" })
20
.Scrollable()
21
+ .Navigatable()
22
.Editable(editable => editable.Mode(GridEditMode.InCell))
23
.DataSource(dataSource => dataSource
24
.Custom()
@@ -48,6 +49,7 @@
48
49
.PageSize(20)
50
.ServerPaging(true)
51
.ServerSorting(true)
52
+ .ServerFiltering(true)
53
)
54
.Pageable()
55
.Sortable()
@@ -69,4 +71,4 @@
69
71
function destroy(dataItem) {
70
72
return "http://localhost:54339/odata/Products(" + dataItem.ProductID + ")";
73
}
-</script>
74
+</script>
0 commit comments