Re: how to get values in gwt externally

2009-09-29 Thread Saurabh Naik
I am using gwt ext but there is no wrap method. On Tue, Sep 15, 2009 at 4:49 PM, Ian Bambury ianbamb...@gmail.com wrote: You need to wrap it, e.g. TextBox t = TextBox.wrap(RootPanel.get(name).getElement()); and then use that. Ian http://examples.roughian.com 2009/9/15 Saurabh Naik

Re: how to get values in gwt externally

2009-09-29 Thread Ian Bambury
Your subject line is how to get values in gwt. If you are having a problem with ext then you should post your question in an ext forum not a gwt forum. Ian http://examples.roughian.com 2009/9/29 Saurabh Naik saurabhsn...@gmail.com I am using gwt ext but there is no wrap method. On Tue, Sep

Re: how to get values in gwt externally

2009-09-29 Thread Saurabh Naik
ok .. on html form I am having input type=button id=btn value=submit where I have to do pop up thing for buttons but I am getting following error [ERROR] Unable to load module entry point class my.pkg.client.Popup (see associated exception for details) java.lang.AssertionError: null at

how to get values in gwt externally

2009-09-15 Thread Saurabh Naik
Hello suppose there is one textbox in my html form. and I want to take the value which is entered in my gwt i.e in my onModuleLoad() function. how to take value ? e.g there is textbox input type=text id =name String name = (String) rootpanel.get(name).getValue... but there is no get

Re: how to get values in gwt externally

2009-09-15 Thread Yogesh Bhave
Hi Saurabh, To get value you have to set value attribute to your input type input type=text id =name value=Saurabh and call following code in your onModuleLoad() method String name = (String) rootpanel.get(name)..getElement().getAttribute(value)); On Tue, Sep 15, 2009 at 1:25 PM, Saurabh

Re: how to get values in gwt externally

2009-09-15 Thread Ian Bambury
You need to wrap it, e.g. TextBox t = TextBox.wrap(RootPanel.get(name).getElement()); and then use that. Ian http://examples.roughian.com 2009/9/15 Saurabh Naik saurabhsn...@gmail.com Hello suppose there is one textbox in my html form. and I want to take the value which is entered

Re: how to get values in gwt externally

2009-09-15 Thread Saurabh Naik
Thanks Ian its working.. yogesh how about if we take value at runtime ... On Tue, Sep 15, 2009 at 4:49 PM, Ian Bambury ianbamb...@gmail.com wrote: You need to wrap it, e.g. TextBox t = TextBox.wrap(RootPanel.get(name).getElement()); and then use that. Ian http://examples.roughian.com