Thanks a lot. Its a nice post.
I want to show the prompt on Menu as well as MenuItem.
Here is my code and working fine.
Code:
public class CustomMenu extends Menu {
public CustomMenu (){
setCanHover(true);
setShowHoverComponents(true);
setHoverCustomizer(new HoverCustomizer() {
@Override
public String hoverHTML(Object value, ListGridRecord record, int rowNum, int colNum) {
return "my custom title";
}
}
}
Leave a comment: