Guest User

Untitled

a guest
Jun 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $("#sampleGrid").kendoGrid({
  2. columns: [
  3. { field: "ID", title: "ID", width: 50 },
  4. { field: "Label", title: "Label", template: "<span class='k-link bold' title='${Description}'>${Label}</span>" },
  5. { field: "Description", title: "Description" }
  6. ],
  7. dataBound: function () { this.element.find('tbody tr:first').addClass('k-state-selected') },
  8. pageable: {
  9. refresh: true,
  10. pageSizes: [10, 15, 20, 25]
  11. },
  12. resizable: true,
  13. reorderable: true,
  14. filterable: true,
  15. groupable: true,
  16. selectable: true,
  17. sortable: true
  18. });
Add Comment
Please, Sign In to add comment