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 options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 rows
.Whenever I selects a row and click on remove button the selected row
should remove from the table.Can anyone help me to solve this problem.

-- 
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 options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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);
}
});
stocksFlexTable.setWidget(row, 3, removeStockButton);


try this it works




On Wed, Jan 4, 2012 at 4:09 PM, ang  wrote:

> Hi to everybody,
> j'm new to gtw (sorry for my english) I have a problem with the
> tutorial in question ... in step 5
>
> [url]http://code.google.com/intl/it-IT/webtoolkit/doc/1.6/tutorial/
> codeclient.html[/url]
>
> how come when I click on button remove the symbol variable contains
> the value corresponding to the  table row?
>
> [code]
> ..
> ...
> // Add a button to remove this stock from the table.
>Button removeStockButton = new Button("x");
>removeStockButton.addClickHandler(new ClickHandler() {
>  public void onClick(ClickEvent event) {
>int removedIndex = stocks.indexOf(symbol);
>stocks.remove(removedIndex);
>stocksFlexTable.removeRow(removedIndex + 1);
>  }
>});
>stocksFlexTable.setWidget(row, 3, removeStockButton);
>
>
> [/code]
>
> --
> 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 options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>


-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 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 options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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(
textBox.getText()+((Image) sender).getAltText());




}
});
Now I have focus only in textBox.If I need to add text in another textBox
named textBox_1 How can I code that

If I coded like this at one time both textboxes are in focus at a time
means they are adding text at a time

 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(
textBox.getText()+((Image) sender).getAltText());

  textBox_1.setText(
textBox.getText()+((Image) sender).getAltText());


}
});
How can I solve this in 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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt

2011-12-30 Thread Amrutha Thomas
but how can I change focus from one text box to another using this


On Fri, Dec 30, 2011 at 4:09 AM, Ian Bambury  wrote:

> textbox.setFocus(true);
>
>
>
> On 30 December 2011 09:49, Ed Bras  wrote:
>
>> For any widget element:
>> /**
>>  * Sets the focus state 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,
>>>
>>>
>>>  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 google-web-toolkit@googlegroups.com
>>> .
>>> To unsubscribe from this group, send email to
>>> google-web-toolkit+unsubscr...@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>>
>>
>>  --
>> 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 options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>  --
> 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 options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>



-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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,

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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt virtual keyboard

2011-12-28 Thread Amrutha Thomas
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 solve this
problem.







On Wed, Dec 28, 2011 at 4:01 PM, Amrutha Thomas wrote:

> can you show me the code with any key
>
>
> On Wed, Dec 28, 2011 at 3:27 PM, Kanagaraj M wrote:
>
>> 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 this discussion on the web visit
>> https://groups.google.com/d/msg/google-web-toolkit/-/T7CepAv1L7IJ.
>>
>> 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 options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>
>
> --
> with best regards,
>
> Amrutha
>
>


-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 solve this
problem.

-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 wrote:

> 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 this discussion on the web visit
> https://groups.google.com/d/msg/google-web-toolkit/-/T7CepAv1L7IJ.
>
> 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 options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>



-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 wrote:

> for other keys
>
> NativeEvent event = Document.get().createKeyDownEvent(...);
>
> DomEvent.fireNativeEvent(event, this);
>
>
>  --
> 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/-/BeYo1PMDaoEJ.
>
> 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 options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>



-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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
wrote:

> ohhh I have forgotten that Thanks yaar
>
>
>
>
>
>
>
> On Wed, Dec 28, 2011 at 11:38 AM, Amrutha Thomas  > wrote:
>
>> 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 wrote:
>>
>>> textBox.setText( textBox.getText()+sender.getTitle());
>>>
>>> I dont understand why you are adding "1".
>>>
>>>
>>>  --
>>> 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/-/VM42qOp6KDoJ.
>>>
>>> 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 options, visit this group at
>>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>>
>>
>>
>>
>> --
>> with best regards,
>>
>> Amrutha
>>
>>
>
>
> --
> with best regards,
>
> Amrutha
>
>


-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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
wrote:

> 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 wrote:
>
>> textBox.setText( textBox.getText()+sender.getTitle());
>>
>> I dont understand why you are adding "1".
>>
>>
>>  --
>> 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/-/VM42qOp6KDoJ.
>>
>> 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 options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>
>
> --
> with best regards,
>
> Amrutha
>
>


-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 wrote:

> textBox.setText( textBox.getText()+sender.getTitle());
>
> I dont understand why you are adding "1".
>
>
>  --
> 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/-/VM42qOp6KDoJ.
>
> 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 options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>



-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 wrote:

> 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 Groups
> "Google Web Toolkit" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-web-toolkit/-/tiw2GFSZrn8J.
>
> 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 options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>



-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 works only once
when i try to click on it again it won't come in textbox.What should I do
for that?


On Wed, Dec 28, 2011 at 10:09 AM, Kanagaraj M wrote:

> write a click event listener.
> Attach the listener to all the buttons.
> receive the event, find which button is clicked and add the respective
> character to text box
>
>  --
> 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/-/hwnVs8OMyXsJ.
>
> 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 options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>



-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.