Re: How to disable text clear when i hit Esc in SuggestBox

2013-07-01 Thread Dayananda B V
please let me know how can i fix the below issue. On Friday, June 28, 2013 6:37:15 PM UTC+5:30, Dayananda B V wrote: Hi All, When i hit Esc key in suggest box what ever the text i typed is clearing. I don't want to suggestbox to clear the text, i want hide the popup menu. appricate

Re: How to disable text clear when i hit Esc in SuggestBox

2013-07-01 Thread Dayananda B V
Hi Jens, thanks for replay, what i want is when i type a text suggestbox and when I hit escape key, whatever the text I entered is clearing. i don't want to clear the text. On Monday, July 1, 2013 1:43:32 PM UTC+5:30, Jens wrote: I am using GWT 2.5.1 and when I hit ESC in a SuggestBox

Re: How to disable text clear when i hit Esc in SuggestBox

2013-07-01 Thread Dayananda B V
guess you could do a preventDefault on the ESC key event. David On Mon, Jul 1, 2013 at 11:39 AM, Dayananda B V dayan...@gmail.comjavascript: wrote: Hi Jens, thanks for replay, what i want is when i type a text suggestbox and when I hit escape key, whatever the text I entered is clearing

Re: How to disable text clear when i hit Esc in SuggestBox

2013-07-01 Thread Dayananda B V
to edit). I guess you could do a preventDefault on the ESC key event. David On Mon, Jul 1, 2013 at 11:39 AM, Dayananda B V dayan...@gmail.comjavascript: wrote: Hi Jens, thanks for replay, what i want is when i type a text suggestbox and when I hit escape key, whatever the text I entered

Re: How to disable text clear when i hit Esc in SuggestBox

2013-07-01 Thread Dayananda B V
field (set back to what it was before starting to edit). I guess you could do a preventDefault on the ESC key event. David On Mon, Jul 1, 2013 at 11:39 AM, Dayananda B V dayan...@gmail.comjavascript: wrote: Hi Jens, thanks for replay, what i want is when i type a text suggestbox

Re: How to disable text clear when i hit Esc in SuggestBox

2013-07-01 Thread Dayananda B V
thanks jens, appriciate your help. On Monday, July 1, 2013 4:43:56 PM UTC+5:30, Jens wrote: You could also use a key handler: @UiHandler(suggestBox) void onKeyUp(KeyUpEvent event) { if(event.getNativeKeyCode() == KeyCodes.KEY_ESCAPE) { event.preventDefault(); //IE clears text on

How to disable text clear when i hit Esc in SuggestBox

2013-06-28 Thread Dayananda B V
Hi All, When i hit Esc key in suggest box what ever the text i typed is clearing. I don't want to suggestbox to clear the text, i want hide the popup menu. appricate your help. Thanks Dayananda B V -- You received this message because you are subscribed to the Google Groups Google Web

Re: Regarding SuggestBox with MultiWordSuggestOracle - selecting value

2013-06-11 Thread Dayananda B V
thanks, appricate your help On Monday, June 10, 2013 7:18:53 PM UTC+5:30, Dayananda B V wrote: Hi all, Suggestpopup box which show list of items here i want to show say for example company discription (International Business Machine), when i select company discription i want to show

Regarding SuggestBox with MultiWordSuggestOracle - selecting value

2013-06-10 Thread Dayananda B V
Hi all, Suggestpopup box which show list of items here i want to show say for example company discription (International Business Machine), when i select company discription i want to show company code(IBM.US) in SuggestBox inseated of International Business Machine. How can i do that? Is

Re: how to make DataGrid column heading looks like swing table heading

2012-05-08 Thread Dayananda B V
thank you, the table th{background: gray;} CSS for worked On May 7, 7:47 pm, Dayananda B V dayanand...@gmail.com wrote: Hi Ashwin, I am sorry, i did not try that, you mean i need to create a style and set to the cell? how can set like, table td {background: gray;}? but it is setting whole

Re: how to add multiselection to tree in gwt 2.4

2012-05-08 Thread Dayananda B V
please help me to fix this On May 7, 6:18 pm, Dayananda B V dayanand...@gmail.com wrote: Hi all, How to add multiselection totreein gwt 2.4, I created MultiSelectionModel, i tried to set multiselectionmodel totree, but i don't see any multiselection method to add. Thanks Dayananda B V

Re: how to add multiselection to tree in gwt 2.4

2012-05-08 Thread Dayananda B V
of NodeInfo is DefaultNodeInfo which takes a SelectionModel in its constructor. http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/g... -- J. Am Montag, 7. Mai 2012 15:18:48 UTC+2 schrieb Dayananda B V: Hi all, How to add multiselection to tree in gwt 2.4, I created

how to place icon right side in DataGrid table heading (sortin)

2012-05-08 Thread Dayananda B V
Hi All How to place sort (triangle) icon to right and side in heading DataGrid table . Appreciate your help. Thanks Dayanand B V -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: how to place icon right side in DataGrid table heading (sortin)

2012-05-08 Thread Dayananda B V
Its seems the icon picking up from local machine RTL or LTR, but i could not make to right could any body help on this. On May 8, 6:08 pm, Dayananda B V dayanand...@gmail.com wrote: Hi All How to place sort (triangle) icon to right and side in heading DataGrid table . Appreciate your help

Re: how to add multiselection to tree in gwt 2.4

2012-05-08 Thread Dayananda B V
Thank you so much Jens, appreciate your timely help. I am displaying lot of data on tree, maybe I need to reconsider to use Tree. On May 8, 5:36 pm, Jens jens.nehlme...@gmail.com wrote: You don't have to. You could also write your own class that defines some logic how to select items in a Tree.

how to add multiselection to tree in gwt 2.4

2012-05-07 Thread Dayananda B V
Hi all, How to add multiselection to tree in gwt 2.4, I created MultiSelectionModel, i tried to set multiselectionmodel to tree, but i don't see any multiselection method to add. Thanks Dayananda B V -- You received this message because you are subscribed to the Google Groups Google Web

Re: how to make DataGrid column heading looks like swing table heading

2012-05-07 Thread Dayananda B V
, you can customize the style of the DataGrid by overriding the CSS properties? Did you try that. Regards Ashwin On Fri, May 4, 2012 at 11:28 AM, Dayananda B V dayanand...@gmail.comwrote: please help on this regard On May 3, 11:57 am, Dayananda B V dayanand...@gmail.com wrote: Hi

Datagrid without text wrap

2012-05-03 Thread Dayananda B V
Hi All, How to make datagrid without text wrap. Kind regards, -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Datagrid with resiable column

2012-05-03 Thread Dayananda B V
Hi All, How to make DataGrid with resizable column. appreciate your help thanks Daya -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this

Re: Datagrid with resiable column

2012-05-03 Thread Dayananda B V
. Mai 2012 12:40:26 UTC+2 schrieb Dayananda B V: Hi All, How to make DataGrid with resizable column. appreciate your help thanks Daya- Hide quoted text - - Show quoted text - -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: Datagrid with resiable column

2012-05-03 Thread Dayananda B V
it's worked, problem in setting width of table. On May 3, 6:02 pm, Dayananda B V dayanand...@gmail.com wrote: Hi Jens, thank you so much for replay, i tired the url you pointed out. how ever i am not able resize column, please check below demo, can you please let me what could be reason

Re: how to make DataGrid column heading looks like swing table heading

2012-05-03 Thread Dayananda B V
please help on this regard On May 3, 11:57 am, Dayananda B V dayanand...@gmail.com wrote: Hi all, How to make DataGrid column heading looks like swing table heading, now DataGrid column shows plain text with vertical line but i need excel or swing table heading where the background color

Re: how to avoid mulitple dilogbox opening from the parent window

2012-04-27 Thread Dayananda B V
Hi Andrei, setGlassEnabled is worked. thanks you so much, appreciate your help On Apr 25, 12:39 am, Andrei vol...@spiraluniverse.com wrote: Add .setGlassEnabled to your dialog boxes. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: How to make parent window read only and background color to gray when dialogbox open

2012-04-27 Thread Dayananda B V
Hi All, setGlassEnabled is worked. thanks you so much, appreciate your help -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send

How to set a Font for all the compoent in GWT

2012-04-27 Thread Dayananda B V
Hi All, I need to set different font other than default font which will come CLEAN Theme. (Arial) Is i need to set style property for individual component ? Appreciate your help. Thanks Daya -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: how to select a treeitem on click of + icon on Tree

2012-04-26 Thread Dayananda B V
thanks for replay, it won't help, when i click tree + icon, there is no selection event fires, is there any alternative way for this. appriciate your help. On Apr 18, 9:42 am, Lakshminarayana Golla royalkingnaray...@gmail.com wrote: HI.. Try this..         MainTree.addSelectionHandler(new

How to make parent window read only and background color to gray when dialogbox open

2012-04-26 Thread Dayananda B V
Hi All, How to make parent window read only and background color to gray when dialogbox open. like swing dialog model. appreciate your help Thanks Dayananda B V -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

how to avoid mulitple dilogbox opening from the parent window

2012-04-24 Thread Dayananda B V
Hi All, I have 4 labels in parent window for each label i need to open a dilogbox, if a dilogbox already open, the remaing 3 lablels click should not open dilogbox. i have set setModel(true) in dilogbox, however i can still click on parent window labels, which opens dilogbox. Is there any way to

how to select a treeitem on click of + icon on Tree

2012-04-17 Thread Dayananda B V
HI all, How I can select corresponding a treeitem on click of + icon on the tree. appreciate your help. Thanks Daya -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com.

Re: how can i add a double click event to Tree component

2012-04-08 Thread Dayananda B V
can anybody help me on this regard -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/MIt3B5aDw1wJ. To post to this group, send email to

Re: how can i add a double click event to Tree component

2012-04-08 Thread Dayananda B V
can anybody help me on this. On Tuesday, April 3, 2012 11:34:01 AM UTC+5:30, dayanandabv wrote: Hi All, Very good morning, how can I add a double click event to Tree component. please help on this regard. appreciate your help. Thanks Daya -- You received this message because