Clearing handlers added to elements created using wrap method

2010-08-31 Thread myapplicationquestions
Hi All, I have an existing html and i am adding a simple GWT script to that page which will show an alert when an existing link is clicked. I do this by the following code public class ABCMobile implements EntryPoint,ClickHandler { public void onModuleLoad() { Anchor lo =

Calling methods from GWT script in existing HTML

2010-08-30 Thread myapplicationquestions
Hi All, I have a huge HTML (existing project) and i am trying to incorporte some GWT components. I have created a simple method called navigateToPage which is written as static native String navigateToPage() /*-{ // ...implemented with JavaScript $wnd.alert(yeah yeah yeah); }-*/; from

BlackBerry6 and GWT

2010-08-26 Thread myapplicationquestions
Hi All, BlackBerry6 uses webkit so GWT webapp should work as it is but i wanted to know if anyone has tried developing a web application focused primarily for blackberry6? Thanks, Parag -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Perfect caching not working in httpd.conf

2010-08-19 Thread myapplicationquestions
Hi All, I am trying to do what GWT suggest in Perfect Caching section of http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html I am trying to add the following in my httpd.conf LoadModule expires_module modules/mod_expires.so Files *.nocache.* ExpiresDefault access

Re: Perfect caching not working in httpd.conf

2010-08-19 Thread myapplicationquestions
19, 12:47 pm, Thomas Broyer t.bro...@gmail.com wrote: On 19 août, 15:50, myapplicationquestions parag.bhag...@cgi.com wrote: Hi All, I am trying to do what GWT suggest in Perfect Caching section ofhttp://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebu... I am trying

GWT useful for HTML Parsing? Is it fast enough

2010-04-18 Thread myapplicationquestions
Hi All, I have a requirement where i get a huge html report from a third party application (@50,000 records), i need to put a filter on it so i show only some records matching a certain criteria. I am thinking of using GWT for this, where i will go through DOM and parse each row, if a particular

Re: How to get OnMouseOver Event on DIV Element

2010-04-12 Thread myapplicationquestions
I also have the same issue where the mouseover is not getting reisgtered in a div added via an HTML widget. I am trying to listen to mouseover using the native preview handler. FYI: This works in GWT 1.7.1 but once i upgrade to GWT 2.0 it stops working.. anyone has seen this happening? On Apr

__listener tags getting added in IE8 using GWT 2.0

2010-04-12 Thread myapplicationquestions
Hi All, I am having a very hard time understanding why each of my div when viewed in IE8 ( using its crappy developer tools) show me __listener tag which is incomplete.. div class=portlet-column style=height: 100%; __listener= DIV style=HEIGHT: 100% class=portlet-columnDIV class=mss-

Debugging gwt scripts deployed on Websphere and IBMHttpserver

2010-03-07 Thread myapplicationquestions
Hi All, Is it possible to debug GWT scripts deployed onto websphere? Thanks, -- 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-tool...@googlegroups.com. To unsubscribe from this group, send

Re: onbrowseevent and sinkevent relation

2010-01-13 Thread myapplicationquestions
. And when that happens, you can cathc that event in onBrowserEvent() Read more here:http://markmail.org/message/5t3swkltgadexbwj On 1/13/10, myapplicationquestions parag.bhag...@cgi.com wrote: HI All, I have a tempwidget which extends gwt widget class. I have some buttons on them

Custom widgets and extended properties

2010-01-13 Thread myapplicationquestions
Hi All, I am trying to develop a custom widget, the behaviour of which can be controlled by external properties. For example this is what i want to do 1) create a new project 2) develop a simple widget which has 2 buttons YES and NO. the custom widgets have flags that say displayyes displayno

onbrowseevent and sinkevent relation

2010-01-12 Thread myapplicationquestions
HI All, I have a tempwidget which extends gwt widget class. I have some buttons on them button1,button2. There are 3 ways to listen to actions done on the button 1) add clickhandlers for each button 2) capture it on onbrowserevent 3) capture it in NativePreviewHandler implementation somewhere.

Making ScrollTable scrollable using keyboard (up/down arrows)

2009-11-14 Thread myapplicationquestions
Hi All, How can we make gwt incubators scrollTable scrollable using keyboards? I want the user to be able to use up down keys to scroll the rows. Is that possible? Thanks, Parag -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

gwt-validation is this project being maintained?

2009-10-17 Thread myapplicationquestions
Hi All, I have a requirement where i need to do input validation for a lot of form fields through out the application, i was thinking of using http://code.google.com/p/gwt-validation/ as it seems to be the best of what we have avaliable, is this a good library? i did not see a future road map

Anchor.wrap question

2009-09-21 Thread myapplicationquestions
Hi All, This is my requirement i have a grid with where i need to 1) show an approve anchor tag foir each row 2) clicking on which will open up a dialog box. The way i am doing it is instead of using a Anchor widget i am doing an inline html dataTable.setHTML(liRows, liColumnIndex, a

IGOOGLE Like actions using GWT?

2009-09-13 Thread myapplicationquestions
Hi All, How can i 1) Maximize a portlet 2)Minimize a portlet? All my portlets extend composite and i am passing a horizontal panel in init method so all child widgets are added to the horizintal panel. i am trying to get the same behaviour as igoogle an am not sure which method to use...

Re: Chrome like tab behaviour possible using GWT?

2009-09-13 Thread myapplicationquestions
I am trying to get the cascading tabs with the overlay you can see... On Sep 9, 12:52 am, Isaac Truett itru...@gmail.com wrote: Perhaps you could describe what features of the tabs in Chrome you wish to reproduce. On Tue, Sep 8, 2009 at 3:19 PM,

Chrome like tab behaviour possible using GWT?

2009-09-08 Thread myapplicationquestions
Chrome like tab behaviour possible using GWT? I like chrome browser tabs and want tp have the same kind of tabs for my application, has anyone tried that using GWT or one of its extensions? --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: Chrome like tab behaviour possible using GWT?

2009-09-08 Thread myapplicationquestions
yes. but i could not get the chrome like tabs using tab or decorated tab panels.. On Sep 8, 11:54 am, Isaac Truett itru...@gmail.com wrote: Are you aware of the TabPanel class? http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/g... On Tue, Sep 8, 2009 at 11:39 AM,

Has anyone used gwt-validation api? or is there a better one?

2009-08-29 Thread myapplicationquestions
Has anyone used gwt-validation api? or is there a better one? I need mostly data type validations, and some basic constraints on UI side.. Let me know what you all think http://code.google.com/p/gwt-validation/ --~--~-~--~~~---~--~~ You received this message

dynamically deleting records from incubator scrolltable

2009-08-28 Thread myapplicationquestions
Hi All, In one of my grids i have a requrirement that based on some action on the grid the record in teh grid needs to be deleted and widget refereshed.I could not find any delete method on scrolltable or grid (core gwt). Do i always need to redraw the grid? or is there a better option? Thanks,

Re: com.google.gwt.dom.client.Element method getPropertyInt not working? Is it a bug?

2009-08-27 Thread myapplicationquestions
Thanks David. That worked.. basically it seems u cannot use getproperty.. method unless u explicitly do a setProperty.. but getAttribute works for my case. Thanks, On Aug 26, 10:57 am, David david.no...@gmail.com wrote: Hi, You might want to try getAttribute instead of getPropertyInt.

Re: Load external html files inside a popup

2009-08-27 Thread myapplicationquestions
Hi Zujee, Are the help files deployed on the webserver? meaning can u access them using http://help1.html? If yes u can give taht url in the iframe. Thanks On Aug 27, 6:57 am, zujee sujeesh...@gmail.com wrote: Hi experts, I have some help files for my application. when user clicks on help

com.google.gwt.dom.client.Element method getPropertyInt not working? Is it a bug?

2009-08-25 Thread myapplicationquestions
Hi All, I am developing a widget which has an hyperlink as given below a id=SSO_1 rownum=20 mode=READONLY href=javascript:{}TEST1 / a In onPreviewNativeEvent i have the following code snippet if (event.getTypeInt() == Event.ONCLICK) { Element loElement = Element.as(loTarget);

THEAD WITH GRID class?

2009-08-11 Thread myapplicationquestions
Hi All, I am trying to create a grid which should have header columns and some rows. I tried to use the grid class but it does not look like it has a way to add a header row? Is that correct or am i missing something? Thanks, --~--~-~--~~~---~--~~ You received

Re: JNSI Problem Challenge

2009-08-06 Thread myapplicationquestions
How did you solve it? On Aug 6, 3:51 am, Luciano Broussal luciano.brous...@gmail.com wrote: Thank you Jeff and Bigous for your great help! It is solved. Regards. Luciano Luciano On 5 août, 16:43, Bigous big...@gmail.com wrote: Hi Luciano, Jeff is correct. The script that runs

Re: ImageBundle question

2009-07-29 Thread myapplicationquestions
Sorry let me rephrase the question The images are not actually stored in a folder but we store them as binary data in database. In that case i am assuming image bundle will not work right? Thanks, On Jul 22, 5:28 am, David david.no...@gmail.com wrote: Hi Parag, An

ImageBundle question

2009-07-21 Thread myapplicationquestions
Hi All, I am creating an Org tree which will consist of @500 nodes, for each node i want to show an image as well. What is the best way to get all these images loaded? I was thinking of adding an http request in the src tag of the image but wanted tio know if GWT provides anyway so that i can

Adding maximize,collapse,settings option to each widget

2009-04-18 Thread myapplicationquestions
Hi, I need to add maximize,collapse,settings option to each widget that i will create (similar to IGOOGLE) where the title bar has those options. How do i do that? Can it be done by base GWT or do i have to use any extension? Thanks, --~--~-~--~~~---~--~~ You

Re: loading GWT applications on the fly

2009-04-07 Thread myapplicationquestions
anybody has any suggestions? On Apr 6, 6:11 pm, myapplicationquestions bhagwat.pa...@gmail.com wrote: Hi All, I have an application which has 3 tabs.,.. the first tab is called user desktop while the other 2 are based on functional areas like general, payroll. Combined these 2 general

loading GWT applications on the fly

2009-04-06 Thread myapplicationquestions
Hi All, I have an application which has 3 tabs.,.. the first tab is called user desktop while the other 2 are based on functional areas like general, payroll. Combined these 2 general and payroll have 17 widgets total. The user desktop is something where user can select 10 widgets to be shown..

Re: can inlineHTML be used to load static HTML pages?

2009-04-03 Thread myapplicationquestions
always take an iframe to load a complete gwt-app. But that's probably not exactly what you need. On 3 Apr., 03:28, myapplicationquestions bhagwat.pa...@gmail.com wrote: Thanks a lot. But isn't this a major limitation that we cannot harness the power of page designers? Can GWT module

Re: can inlineHTML be used to load static HTML pages?

2009-04-02 Thread myapplicationquestions
hello? any answer? On Apr 1, 5:23 pm, myapplicationquestions bhagwat.pa...@gmail.com wrote: caninlineHTMLbe used to load static HTML pages? I want to harness the power of HTML designing tools to generate static HTML but use GWT to load the widget. Please note that there may be some actions

Re: can inlineHTML be used to load static HTML pages?

2009-04-02 Thread myapplicationquestions
option as a framework for a whole enterprise application.. so was thinking if we can embedded GWT modules in existing application? On Apr 2, 5:32 pm, Thomas Broyer t.bro...@gmail.com wrote: On 1 avr, 23:23, myapplicationquestions bhagwat.pa...@gmail.com wrote: can inlineHTML be used to load

can inlineHTML be used to load static HTML pages?

2009-04-01 Thread myapplicationquestions
can inlineHTML be used to load static HTML pages? I want to harness the power of HTML designing tools to generate static HTML but use GWT to load the widget. Please note that there may be some actions defined in static html. Basically my application has number of widgets some of which are coded