Tim McGee

Results 94 comments of Tim McGee
trafficstars

something like that should work. Depending on where that code resides, your button.click could call a method directly instead of relaying using the `topic.publish`. I would go that route if...

how about something like: ``` javascript var handle = topic.subscribe('attributesContainer/tableAdded', function(tab) { tab.attributesTableToolbarDijit.addChild(new Button({ label: ' Create Workorder', onClick: function() { console.log(tab.grid.store.data.map(function(row) { return row['cid']; })); } })); // add...

@roemhildtg thanks for sharing your solution. I would be interested in seeing how you approached the security and roles. Is that something you can share, either in a public repo...