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 louis.na...@gmail.com 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 intranet
 application but other browsers have been used as troubleshooting
 tools.

 The application configuration looks like this.

 IE8
 GWT 2.1.0
 GWTP
 Guice 2.0
 Gin r137


 Can you identify a known issue with the combination of GWT ,
 libraries, and IE 8?

 Can you recommend techniques to workaround or troubleshoot memory leak
 issues in this configuration?

 Best Regards

 --
 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.



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 gang...@gmail.com wrote:

 How to use them as Widgets ?


 On Wed, Oct 26, 2011 at 10:04 AM, Akash Gupta akash.b...@gmail.comwrote:

 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 larse...@gmail.com wrote:

 Why do you need to get widgets as elements?

 Why not just do

 p.add(new HTMLPanel(Hello a href=\#world\World/a);

  --
 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/-/1NyzCaMCB2QJ.

 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.


-- 
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: 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 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: 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 ari.brandeis.k...@gmail.com wrote:

 Hi,

 Can explain or point me to a tutorial/example that explains how to
 load different components on demand within my GWT application?

 For example, let's say my GWT application's main/start page is a
 home page with a navigation bar at the top and a content container
 below. Once a user clicks a navigation button in the navigation bar,
 I'd like to load that component into the content container, keeping
 the navigation bar as is.

 Thanks

 -Ari

 --
 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.



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 larse...@gmail.com wrote:

 Why do you need to get widgets as elements?

 Why not just do

 p.add(new HTMLPanel(Hello a href=\#world\World/a);

  --
 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/-/1NyzCaMCB2QJ.

 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.



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 t.bro...@gmail.com wrote:



 On 8 fév, 23:26, Simon sp.ma...@gmail.com wrote:
  Yes that is the basics of app engine security. I use it to get the
  Google account of the user.
 
  This is the first step of the login: Google authentication.
  Second step I want to validate the Google account against my own set
  of users,
  Last step I want to send to the user the whole javascript app.

 You could use a servlet filter to let users in to the app or redirect
 them out; or use a servlet or JSP as the host page for the app.

 --
 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 email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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.



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 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 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: special characters

2010-01-18 Thread Akash Gupta
data is coming from database.. and its the fed by user him self ... so cant
use i18n

On Mon, Jan 18, 2010 at 7:49 PM, charlie charlie.f...@gmail.com wrote:

 Link to the i18n file docs ?

 2010/1/18 Rogério Valente rogerio.vale...@gmail.com

 I suggest you create a key in the i18n file.
 In the applications we 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 akash.b...@gmail.com wrote:
  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 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 email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: special characters

2010-01-18 Thread Akash Gupta
its like if the users give in Brandom text/B 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 akash.b...@gmail.com wrote:

 data is coming from database.. and its the fed by user him self ... so cant
 use i18n


 On Mon, Jan 18, 2010 at 7:49 PM, charlie charlie.f...@gmail.com wrote:

 Link to the i18n file docs ?

 2010/1/18 Rogério Valente rogerio.vale...@gmail.com

 I suggest you create a key in the i18n file.
 In the applications we 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 akash.b...@gmail.com wrote:
  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 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.comgoogle-web-toolkit%2bunsubscr...@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-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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 JDO

2009-10-30 Thread Akash Gupta
.

On Fri, Oct 30, 2009 at 3:58 PM, Akash akash.b...@gmail.com 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 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
-~--~~~~--~~--~--~---