Re: gwt

2012-02-13 Thread Amrutha Thomas
thankyou Thad -- 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 google-web-toolkit+unsubscr...@googlegroups.com. For more

gwt

2012-02-12 Thread Amrutha Thomas
I wish to deselect an already selected row and remove a selected row on a Flextable. For example, a user comes and selects a row, the selected row should highlight.If I select another row the row which I had selected before should deselect.Also i have add and remove buttons to add and remove

Re: Mulitple pages using GWT

2012-02-12 Thread Amrutha Thomas
Can you make the question clear?? -- 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

gwt

2012-01-04 Thread Amrutha Thomas
can anyone tell me how to move cursor position from one text box to another textbox and so on by onclicking a button using tabindex?? -- with best regards, Amrutha -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

gwt virtual keyboard shift key

2012-01-04 Thread Amrutha Thomas
How can I code for a button to act as a shift key?? -- with best regards, Amrutha -- 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,

Re: GWT tutorial stockwatcher

2012-01-04 Thread Amrutha Thomas
Button removeStockButton = new Button(x); removeStockButton.addStyleDependentName(remove); removeStockButton.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { removeStock(symbol); } });

hiii

2012-01-02 Thread Amrutha Thomas
Image image_3 = new Image(Images/1.png); absolutePanel_2.add(image_3,15,15); image_3.setAltText(1); image_3.addClickListener(new ClickListener() { public void onClick(Widget sender){ textBox.setText(

gwt virtual keyboard

2012-01-01 Thread Amrutha Thomas
How can I set tab order in my login page and customize focus using gwt virtual keyboard??? -- with best regards, Amrutha -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

gwt virtual keyboard

2011-12-30 Thread Amrutha Thomas
Hiii, In my virtual keyboard I made my caplock key on by using the code image_29.addClickListener( *new* ClickListener(){ *public* *void* onClick(Widget sender){ capsOn=*true*; } }); Now on the second click I need to off my caplock key.How can I code for that?? -- with best regards,

gwt

2011-12-30 Thread Amrutha Thomas
Hiii, Can anyone tell me how to change focus from one textbox to another textbox using gwt? -- with best regards, Amrutha -- 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: gwt

2011-12-30 Thread Amrutha Thomas
of the element. * @param focused the new focus state */ public native void setFocus(Element elem, boolean focused) /*-{ try { if (focused) elem.focus(); else elem.blur(); } catch(err) { } }-*/; On Fri, Dec 30, 2011 at 10:31 AM, Amrutha Thomas amrutha.tho...@gmail.com wrote: Hiii

Re: gwt virtual keyboard

2011-12-28 Thread Amrutha Thomas
how to code for the other keys like capslock,arrow keys,tab,shift,backspace,space bar On Wed, Dec 28, 2011 at 11:45 AM, Amrutha Thomas amrutha.tho...@gmail.comwrote: ohhh I have forgotten that Thanks yaar On Wed, Dec 28, 2011 at 11:38 AM, Amrutha Thomas amrutha.tho...@gmail.com

Re: gwt virtual keyboard

2011-12-28 Thread Amrutha Thomas
but how can I use this code for a virtual keyboard?? On Wed, Dec 28, 2011 at 2:08 PM, Kanagaraj M kanagaraj@gmail.comwrote: for other keys NativeEvent event = Document.get().createKeyDownEvent(...); DomEvent.fireNativeEvent(event, this); -- You received this message because

Re: gwt virtual keyboard

2011-12-28 Thread Amrutha Thomas
can you show me the code with any key On Wed, Dec 28, 2011 at 3:27 PM, Kanagaraj M kanagaraj@gmail.comwrote: do this onclick of the respective buttons in the virtual keyboard -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

gwt

2011-12-28 Thread Amrutha Thomas
Hi, I created a login page in gwt.Near my username and password field there are two icons .If I click on that icon virtual keyboard that I have created in gwt should pop up near username field and password field to enter username and password.How can I code it in gwt?Can anybody help me to

Re: gwt virtual keyboard

2011-12-28 Thread Amrutha Thomas
this problem. On Wed, Dec 28, 2011 at 4:01 PM, Amrutha Thomas amrutha.tho...@gmail.comwrote: can you show me the code with any key On Wed, Dec 28, 2011 at 3:27 PM, Kanagaraj M kanagaraj@gmail.comwrote: do this onclick of the respective buttons in the virtual keyboard -- You received

Hiii

2011-12-27 Thread Amrutha Thomas
Can anybody tell me how to create a virtual keyboard in my login page using gwt.Please do reply -- with best regards, Amrutha -- 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: gwt virtual keyboard

2011-12-27 Thread Amrutha Thomas
Heii Kanagaraj, I have added the code like this Image image_1 = *new* Image(Images/1.png); image_1.addClickListener( *new* ClickListener() *public* *void* onClick(Widget sender){ textBox.setText(( 1 + sender.getTitle()); } }) ; this code is working but when i click on this button it

Re: gwt virtual keyboard

2011-12-27 Thread Amrutha Thomas
can you please show me how to code that?? On Wed, Dec 28, 2011 at 11:14 AM, Kanagaraj M kanagaraj@gmail.comwrote: You are overriding the values in the text box, you have to append with already existing value -- You received this message because you are subscribed to the Google

Re: gwt virtual keyboard

2011-12-27 Thread Amrutha Thomas
if 1 is not added how it works,bcoz I have added the keys as images On Wed, Dec 28, 2011 at 11:34 AM, Kanagaraj M kanagaraj@gmail.comwrote: textBox.setText( textBox.getText()+sender.getTitle()); I dont understand why you are adding 1. -- You received this message because you are

Re: gwt virtual keyboard

2011-12-27 Thread Amrutha Thomas
ohhh I have forgotten that Thanks yaar On Wed, Dec 28, 2011 at 11:38 AM, Amrutha Thomas amrutha.tho...@gmail.comwrote: if 1 is not added how it works,bcoz I have added the keys as images On Wed, Dec 28, 2011 at 11:34 AM, Kanagaraj M kanagaraj@gmail.comwrote: textBox.setText