I want to use rightClickHandler in smartGWT Calender widget. Can anybody help me?
Asked
Active
Viewed 93 times
2 Answers
0
Menu mainMenu = new Menu();
//menu items
widget.setContextMenu(mainMenu);
http://www.java2s.com/Code/Java/GWT/ContextMenuSampleSmartGWT.htm
How to handle right mouse click on the specific Event in SmartGWT Calendar?

Community
- 1
- 1

Suresh Atta
- 120,458
- 37
- 198
- 307
-
How this will help in Calendar widget ??? – PVR Apr 03 '13 at 12:03
-
calendar is not an Widget ?? – Suresh Atta Apr 03 '13 at 12:07
0
You can try for RightMouseDownHandler()
.
Calendar calendar = new Calendar();
calendar .addRightMouseDownHandler(new RightMouseDownHandler() {
@Override
public void onRightMouseDown(RightMouseDownEvent event) {
// TODO Auto-generated method stub
}
});

PVR
- 2,534
- 18
- 38