Skip to content

Instantly share code, notes, and snippets.

@springcome
Last active November 2, 2015 11:34
Show Gist options
  • Select an option

  • Save springcome/5d1f7ef9896f0583833f to your computer and use it in GitHub Desktop.

Select an option

Save springcome/5d1f7ef9896f0583833f to your computer and use it in GitHub Desktop.
treeGrid.addShowContextMenuHandler(new ShowContextMenuHandler() {
@Overraid
public void onShowContextMenu(ShowContextMenuEvent event) {
// Hidden or Show
// 특정 조건에 의해 보이고 안보이고에 대한 Option이 존재하지 않는다.
// 그래서 Menu, MenuItem을 생성하 setItems을 사용하여 미리 담아두지 않고 이부분에서 조건에 의해 setItems을 해준다.
menu.setItems(add);
// Disabled or Enabled
menu.getItem(idx).setEnabled(true or false);
menu.showContextMenu();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment