Guest User

Untitled

a guest
Jun 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. dojo.connect(grid, "onCellDblClick", dojo.partial(onCellDblClickHandler, grid));
  2.  
  3. function onCellDblClickHandler(inGrid, inRowIndex)
  4. {
  5. console.info(inGrid, inRowIndex);
  6.  
  7. dijit.popup.open({
  8. popup: myDialog,
  9. around: // how do i get the domnode of the cell
  10. });
  11. }
Add Comment
Please, Sign In to add comment