Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. $('#mileagetable').dataTable(
  2. {
  3. "aaData": aaData,
  4. "iDisplayLength": 5, "lengthMenu": [[5, 10, 25, 50, -1], [5, 10, 25, 50, "All"]],
  5. "bDestroy": true,
  6. "bSort": true,
  7. "aoColumns": [
  8.  
  9. { "mDataProp": "record", "sWidth": "10%" },
  10. {
  11. "mData": "task1",
  12. "mRender": function (data, type, full) {
  13. return '<i class="fa fa-link"></i> <a href="#' + data + '" target="_blank">' + data + '</a>';
  14. },
  15. "mData": "task2",
  16. "mRender": function (data, type, full) {
  17. return '<i class="fa fa-link"></i> <a href="#' + data + '" target="_blank">' + data + '</a>';
  18. }
  19. }
  20. ]
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement