You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.Mvc.md
+31-19Lines changed: 31 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
## How to use
2
-
Add the `[JQDataTable]` attribute to the ajax controller action. Return from the controller View with IQueryable collection of a strongly typed view model. This component uses IQueryable<T> interface to construct query expressions to your data collection which can be processed by an ORM like Entity Framework. On the client side configure the table for server side processing acccording to the jQuery Data Tables documentation https://datatables.net/examples/data_sources/server_side.html.
2
+
Add the `[JQDataTable]` attribute to the controller action which provides the data. Return from the action `View` containing `IQueryable<>` collection of a strongly typed view model. On the client side configure the table for server side processing according to the jQuery Datatables documentation https://datatables.net/examples/data_sources/server_side.html.
3
3
4
4
### Example
5
5
@@ -23,24 +23,36 @@ Add the `[JQDataTable]` attribute to the ajax controller action. Return from the
Add the `[JQDataTable]` attribute to the controller action which provides the data. Return from the action View containing IQueryable collection of a strongly typed view model. On the client side configure the table for server side processing according to the jQuery Datatables documentation https://datatables.net/examples/data_sources/server_side.html.
0 commit comments