Advertisement
Guest User

Untitled

a guest
Apr 25th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. $('#example').dataTable({
  2. "bProcessing": true,
  3. "bServerSide": true,
  4. "aaSorting": [[2, "asc"]],
  5. "sAjaxSource": "/userControl/GetUser.php",
  6. "aoColumnDefs": [{
  7. "aTargets": [0],
  8. "mData": "download_link",
  9. "mRender": function (data, type, full) {
  10. return '<a href="/UserDetail.aspx?ID=' + data + '">Detail</a><br/><a href="/UserDetail.aspx?ID=' + data + '">Delete</a>';
  11. }
  12. }],
  13. "aoColumns": [
  14. { "mData": null },
  15. { "mData": "LoginId" },
  16. { "mData": "FirstName" },
  17. { "mData": "LastName" }
  18. ]
  19. });
  20.  
  21. var oTable = $('#example').dataTable();
  22.  
  23. oTable.fnSort([1, 'asc']);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement