Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. grid = new webix.ui({
  2. view:"datatable",
  3. columns:[...],
  4. "export":true
  5. });
  6.  
  7. <input type="button" value="Get as PDF" style='width:400px;margin:25px;' onclick="grid.exportToPDF();">
  8.  
  9. {
  10. container:"testA",
  11. view:"datatable",
  12. columns: <?= $json; ?>,
  13.  
  14. id: "iddatatable"
  15.  
  16. footer:false,
  17. autoheight:false,
  18. data:<?= $json_body; ?>,
  19. scrollAlignY:true,
  20. export:true,
  21. resizeColumn:true,
  22. resizeRow:false,
  23. dragColumn:true
  24. }
  25.  
  26. $$('iddatatable').exportToPDF();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement