Re: IE8 memory leak

2012-05-17 Thread Akash Gupta
Do you use any third party library ? On Wed, May 16, 2012 at 7:20 PM, sylvanco wrote: > > I work on an intranet GWT application that is consuming memory with > IE8 but not in Chrome or IE9. Due to OS and ActiveX technologies, > browsers other than IE8 are not a deployment option for this intran

Re: Click Events not getting attached

2011-10-27 Thread Akash Gupta
instead of MyPanel p = new MyPanel (contentHtmlPanel.getElement()); do it MyPanel p = new MyPanel (contentHtmlPanel); and have a constructor accordingly. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send ema

Re: Click Events not getting attached

2011-10-27 Thread Akash Gupta
don't cast them into elements, use them as widgets, do not deal with elements at all. On Thu, Oct 27, 2011 at 12:00 AM, gangurg gangurg wrote: > How to use them as Widgets ? > > > On Wed, Oct 26, 2011 at 10:04 AM, Akash Gupta wrote: > >> ya use them as widgets instead

Re: Click Events not getting attached

2011-10-26 Thread Akash Gupta
ya use them as widgets instead of elements, if you want to retain the listeners. On Wed, Oct 26, 2011 at 10:13 PM, Jeff Larsen wrote: > Why do you need to get widgets as elements? > > Why not just do > > p.add(new HTMLPanel("Hello World"); > > -- > You received this message because you are sub

Re: Loading Components On User Request

2011-10-26 Thread Akash Gupta
Have a simple panel, and keep setting widget to that simple panel on click of navigation panel, for on demand part, create the component on click method if it is null, else set the already created widget. On Wed, Oct 26, 2011 at 8:41 PM, Ari wrote: > Hi, > > Can explain or point me to a tutorial

Re: Have you read the GWT Applications book by Ryan Dewsbury?

2010-03-03 Thread Akash Gupta
lol On Wed, Mar 3, 2010 at 9:01 PM, kozura wrote: > Read the book again, with care? > > -- > 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 t

Re: Authenticate before loading the application

2010-02-08 Thread Akash Gupta
http://code.google.com/p/google-web-toolkit/wiki/CodeSplitting You could use code-splitting for the purpose. If user is authenticated then send him js code.. else don't. On Tue, Feb 9, 2010 at 5:08 AM, Thomas Broyer wrote: > > > On 8 fév, 23:26, Simon wrote: > > Yes that is the basics of app

Re: special characters

2010-01-18 Thread Akash Gupta
its like if the users give in random text the tree node will come as bold text and it was show only "random" . further if he misses any '<' or '>' it will screw up whole tree and gui On Mon, Jan 18, 2010 at 8:34 PM, Akash Gupta wrote: > data is coming from

Re: special characters

2010-01-18 Thread Akash Gupta
are developing with gwt, we just create it and >> point the widget's text propertie to this key. >> >> >> On 18 jan, 07:49, Akash Gupta wrote: >> > How do i use characters like "<" or ">" as browser considers text >> > after

special characters

2010-01-18 Thread Akash Gupta
How do i use characters like "<" or ">" as browser considers text after/before them as a tag and messes up the whole thing . Some methods to encode/decode them are there or we need to do something else (like replaceall ) . Regards, Akash -- You received this message

Re: GWT JDO

2009-10-30 Thread Akash Gupta
. On Fri, Oct 30, 2009 at 3:58 PM, Akash wrote: > > Hi, > Can sombody help me finding some tutorials how to use JDO with GWT and > connect to a database. > > Regards, > Akash > > > --~--~-~--~~~---~--~~ You received this message bec

GWT JDO

2009-10-30 Thread Akash
Hi, Can sombody help me finding some tutorials how to use JDO with GWT and connect to a database. Regards, Akash --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to

Re: programmatically set focus to TabBar tab

2009-10-21 Thread Akash
I think method you are looking for is tabPanel.setActiveTab(); On Oct 21, 6:10 am, BryanDavid wrote: > Hello, > > The TabBar tabs have the ability to have keyboard focus, and if you > click on one, it will get the dotted outline showing keyboard focus. > This is great since I can then use a KeyD

Re: MySQL Connection

2009-09-21 Thread Akash
Hey, You are going on wrong way! You can only use java.util and java.lang on client side code ... for everything else you will have to use server side code which returns results to you client. On Sep 3, 4:21 am, GumbyGWTBeginner wrote: > Hi Guys, > > Was wondering if anyone could answer a small