gwt - ListGrid / ListGridField - Hover message while editing -
is there way show hover message on editable cell/listgridfield while in edit mode?
was able have hover message on cell in non-edit mode :
cusipfield.setshowhover(true); cusipfield.sethovercustomizer(getcusiphovercustomizer());
thank you
you should able manipulate properties of editor created when enter edit mode field through appropriate formitem , listgridfield.seteditorproperties(formitem editorproperties) method. example, if field storing texts, shall create textitem , define hover text using setprompt(java.lang.string prompt) method. use textitem set editor properties field.
Comments
Post a Comment