Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. gridOptions: {
  2. columns: [
  3. {
  4. id: 'Action',
  5. field: 'OBJECTID',
  6. label: 'Action',
  7. width: 60,
  8. sortable: false,
  9. exportable: false,
  10. renderCell: function (object, value, node) {
  11. on(node, 'click', function() {
  12.  
  13. var dlg = new Dialog({
  14. title: "Dialog",
  15. className:"dialogclass",
  16. style: "width: 500px",
  17. /* href to w2ui layout page */
  18. href: "http://localhost/lesen/index.html"
  19. });
  20.  
  21. dlg.show();
  22. });
  23. node.innerHTML = '<i class='fa fa-pencil' style='margin-left:8px;'></i>';
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement