Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. .icon-delete {
  2. background-image: url(../images/delete.png) !important;
  3. }
  4.  
  5. columns : [{
  6. text : 'Name',
  7. dataIndex : 'name',
  8. width : '50%'
  9. },
  10. {
  11. xtype : 'actioncolumn',
  12. draggable : false,
  13. hideable : false,
  14. menuDisabled : true,
  15. width:'50%',
  16. items : [{
  17. iconCls: 'icon-delete',
  18. tooltip: 'Delete',
  19. scope: this,
  20. }]
  21. }]
  22.  
  23. {
  24. xtype:'actioncolumn',
  25. width:20,
  26. items: [{
  27. iconCls: 'icon-delete',
  28. tooltip: 'Delete',
  29. handler: function(grid, rowIndex, colIndex) {
  30. grid.getStore().removeAt(rowIndex);
  31. },
  32. scope: this
  33. }]
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement