Re: Created project, but there is no Build.xml

2011-01-12 Thread jaybose
I don't know where you started, but I would suggest reading this
document - http://code.google.com/webtoolkit/gettingstarted.html
I use the Eclipse plugin, so I never see (or expect) a build.xml.


On Jan 11, 11:19 am, AmaraSat amara.forthewo...@gmail.com wrote:
 Hello Everyone,

 I am working on eclipse until now, until yesterday when ever i create
 a project, i use to see this file Build.Xml.

 Modifying this file and including external jars has helped me a lot.

 But from today whenever i craete a new project, i no longer see
 Build.Xml file, that file is not getting created itself.

 Am i doing something wrong? is there any option i need to select to
 get the file.

-- 
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: Location.getParameter() returns nothing in GWT 2.1

2011-01-12 Thread jaybose
Daniel, UI'm just curious, does Window.Location.getParameterMap()
return the params in the query, or does it come back empty too?


On Jan 11, 8:41 am, Daniel dan...@gmail.com wrote:
 In GWT 2.1, the Location.getParameter(action) returns nothing.
 But Location.getQueryString() is able to get all the query parameters
 and had to workaround using the query string.
 I am using IE 6.

 Is this a bug in GWT 2.1?

-- 
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: please Help me GWT Listbox

2011-01-06 Thread jaybose
Vijay, if you can't figure this out using Y2i's suggestion, consider
using a Tree rather than a ListBox.

http://gwt.google.com/samples/Showcase/Showcase.html#!CwTree


On Jan 6, 2:18 am, Y2i yur...@gmail.com wrote:
 Not sure if you can do this with ListBox, but you can try constructing
 this through DOM manipulation using SelectElement, OptGroupElement and
 OptionElement

 On Jan 5, 10:34 pm, vijay gohel vijayigo...@gmail.com wrote:

  i want aout put like

  Group1
       Item1-1
       Item1-2
       Item1-3
       Item1-4
  Group2
       Item2-1
       Item2-2
       Item2-3
       Item2-4
  etc

  for that  in HTML

  there is option in Select Tag and Option in Select Tag is
  optiongroup

  i want that's output in get list box

  thanks

  Vijay

-- 
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: Where do KeyPress Events go?

2011-01-05 Thread jaybose
OK, what does the button do, at the moment?

Do you have your EnterButton's handler call submit() on the form?
If so, are you seeing any errors?


On Jan 4, 8:53 am, Greg Dougherty dougherty.greg...@mayo.edu wrote:
 Yes, but it doesn't do the upload when I hit Enter.  Which is what I'm
 trying to figure out how to get it to do.

 Greg

 On Jan 4, 8:20 am, jaybose onyeje.b...@gmail.com wrote:

 http://gwt.google.com/samples/Showcase/Showcase.html#!CwFileUpload

  Look at the source of the ShowCase example above.
  The uploadButton it uses is not a SubmitButton either.

  Just make sure the handler of your EnterButton submits the form.

  On Jan 3, 8:57 am, Greg Dougherty dougherty.greg...@mayo.edu wrote:

   So, now that I have an EnterButton class, I'd like to use it. :-)  I
   have a form panel with a FileUpload.  I'd like to let the user select
   a file, then hit enter to fire the form submit button (which is an
   EnterButton, not a SubmitButton).

   Unfortunately, FileUpload does not have an addKeyPressHandler
   routine.  So, who gets any key events I generate while in the text
   field part of a FileUpload?  What is the call chain for events that
   aren't captured by the Widget where the event happens?

   Sorry if this is an FAQ, and in the docs.  I took a (quick) look, and
   couldn't find anything.  Please point me to the correct docs if it is
   in there.

   Thanks!

   Greg

-- 
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: Where do KeyPress Events go?

2011-01-04 Thread jaybose
http://gwt.google.com/samples/Showcase/Showcase.html#!CwFileUpload

Look at the source of the ShowCase example above.
The uploadButton it uses is not a SubmitButton either.

Just make sure the handler of your EnterButton submits the form.


On Jan 3, 8:57 am, Greg Dougherty dougherty.greg...@mayo.edu wrote:
 So, now that I have an EnterButton class, I'd like to use it. :-)  I
 have a form panel with a FileUpload.  I'd like to let the user select
 a file, then hit enter to fire the form submit button (which is an
 EnterButton, not a SubmitButton).

 Unfortunately, FileUpload does not have an addKeyPressHandler
 routine.  So, who gets any key events I generate while in the text
 field part of a FileUpload?  What is the call chain for events that
 aren't captured by the Widget where the event happens?

 Sorry if this is an FAQ, and in the docs.  I took a (quick) look, and
 couldn't find anything.  Please point me to the correct docs if it is
 in there.

 Thanks!

 Greg

-- 
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: please Help me GWT Listbox

2011-01-04 Thread jaybose
http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/ListBox.html

Based on the javadoc, you should see what you need to add elements to
a ListBox.
If this is not what you needed, please explain further.



On Jan 3, 3:57 am, vijay gohel vijayigo...@gmail.com wrote:
 hi,

 please Help Me in Listbox widget

 i want to add option Group like Select tag's Option group  in List
 box

 How it is Possible. i don't Know.

 Please Help me on it

 thanks in advance

 Regards,
 Vijay Gohel

-- 
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: iTunes-type display widget

2011-01-02 Thread jaybose
Thanks Matthew

On Jan 1, 7:35 pm, Matthew Hill matt2...@gmail.com wrote:
 That's called CoverFlow.

 No, there isn't a built-in widget like that. You'd have either to find one
 on the internet or make your own.

-- 
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: iTunes-type display widget

2011-01-01 Thread jaybose
Great, do you have an example?

The GWT showcase doesn't have anything like this.
I looked and looked, didn't see any pure GWT demos that had this.


On Jan 1, 3:22 am, Gal Dolber gal.dol...@gmail.com wrote:
 Sure, you can do that with the new CellTable.

 Best



 On Sat, Jan 1, 2011 at 2:18 AM, jaybose onyeje.b...@gmail.com wrote:
 http://picasaweb.google.com/onyeje.bose/12302010#5557097507546443826

  Does anyone know if GWT already has a way to display cells the way
  iTunes does (see image in link above)?

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

 --
 Guit: Elegant, beautiful, modular and *production ready* gwt applications.

 http://code.google.com/p/guit/

-- 
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: iTunes-type display widget

2011-01-01 Thread jaybose
Gal, I was not clear.

I'm asking about displaying images, as in the way the album art is
displayed in the following link.

http://picasaweb.google.com/onyeje.bose/12302010#5557097507546443826



On Jan 1, 11:34 am, Gal Dolber gal.dol...@gmail.com wrote:
 http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellSampler



 On Sat, Jan 1, 2011 at 1:24 PM, jaybose onyeje.b...@gmail.com wrote:
  Great, do you have an example?

  The GWT showcase doesn't have anything like this.
  I looked and looked, didn't see any pure GWT demos that had this.

  On Jan 1, 3:22 am, Gal Dolber gal.dol...@gmail.com wrote:
   Sure, you can do that with the new CellTable.

   Best

   On Sat, Jan 1, 2011 at 2:18 AM, jaybose onyeje.b...@gmail.com wrote:
   http://picasaweb.google.com/onyeje.bose/12302010#5557097507546443826

Does anyone know if GWT already has a way to display cells the way
iTunes does (see image in link above)?

--
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
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com

.
For more options, visit this group at
   http://groups.google.com/group/google-web-toolkit?hl=en.

   --
   Guit: Elegant, beautiful, modular and *production ready* gwt
  applications.

  http://code.google.com/p/guit/

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

 --
 Guit: Elegant, beautiful, modular and *production ready* gwt applications.

 http://code.google.com/p/guit/

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



SafeHtmlUtils

2010-12-31 Thread jaybose
I'd like to copy/borrow the contents of the GWT's SafeHtmlUtils for a
new class of my own.

Does anyone have a link describing how I'm supposed to properly
attribute credit to Google or the GWT team?

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



iTunes-type display widget

2010-12-31 Thread jaybose
http://picasaweb.google.com/onyeje.bose/12302010#5557097507546443826

Does anyone know if GWT already has a way to display cells the way
iTunes does (see image in link above)?

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

2010-12-31 Thread jaybose
Thanks!


On Dec 31 2010, 11:56 pm, Gal Dolber gal.dol...@gmail.com wrote:
 You just need to keep the copyright headers.

 Best



 On Sat, Jan 1, 2011 at 12:58 AM, jaybose onyeje.b...@gmail.com wrote:
  I'd like to copy/borrow the contents of the GWT's SafeHtmlUtils for a
  new class of my own.

  Does anyone have a link describing how I'm supposed to properly
  attribute credit to Google or the GWT team?

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

 --
 Guit: Elegant, beautiful, modular and *production ready* gwt applications.

 http://code.google.com/p/guit/

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



Pager in Cell List Example

2010-12-27 Thread jaybose
http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList

In the example above, in the CwCellList.ui.xml, there's a row defined,
referring to ShowMorePagerPanel's pager field -  see below.

I don't see that field defined in the ShowMorePagerPanel example
source, and I don't understand how it makes the example work. When I
use Firebug to look at the div produced, it's always empty.

Does anyone know if it was a typo, or ...?

===
tr
  td align='center'
 s:ShowMorePagerPanel ui:field='pager' /
   /td
/tr
===

-- 
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 Designer Libraries

2010-11-17 Thread jaybose
Thanks to you and and masterGaurav!

Along with your advice and some research, it became clear that
SmartGWT is the right choice.


On Nov 12, 7:48 pm, Roger Studner rstud...@gmail.com wrote:
 Well.. a quick bit of objective (having used all 3) opinions.

 It is simple:
 1) don't use GWT-EXT.
 2) GXT is a pure java solution, and the only one of the 3.
 3) SmartGWT is *really slick*, but it is basically a little java code, that 
 just wraps the SmartClient javascript library (imagine a couple megs of 
 javascript/css, with a JSNI layer on top of it).

 So, that leaves #2 and #3.  

 It really depends from there how pure GWT you want your solution (GXT being 
 the only choice there).  Or if you really like the VAST choices of 
 SmartClient widgets etc and don't mind that technically, you are just using a 
 javascript library with a java API.

 Maybe I didn't make it simpler hah

 Roger

 On Nov 12, 2010, at 8:25 PM,jaybosewrote:

  I see in the Designer docs (and in the actual tool itself) that there
  are 3 promoted libraries:
  - GWT-Ext (http://gwt-ext.com/)
  - Ext GWT (http://www.extjs.com/products/gxt/)
  - SmartGWT (http://code.google.com/p/smartgwt/)

  Their respective showcases look great. Some are better documented than
  the others.

  I was just wondering, if anyone is using any of these, what are your
  personal experiences so far?

  --
  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 
  athttp://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.



GWT Designer Libraries

2010-11-12 Thread jaybose
I see in the Designer docs (and in the actual tool itself) that there
are 3 promoted libraries:
- GWT-Ext (http://gwt-ext.com/)
- Ext GWT (http://www.extjs.com/products/gxt/)
- SmartGWT (http://code.google.com/p/smartgwt/)

Their respective showcases look great. Some are better documented than
the others.

I was just wondering, if anyone is using any of these, what are your
personal experiences so far?

-- 
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: History and/or Place

2010-08-14 Thread jaybose
Thomas, thank you.

I'm going to go with Turbomanage's last comment!
It's close to what I thinking, and I didn't want to wait for GWT-2.1
before starting on that path...



On Aug 11, 8:58 am, Thomas Broyer t.bro...@gmail.com wrote:
 On 8 août, 23:44, jaybose onyeje.b...@gmail.com wrote:



  Some background...

  This link discusses using the History concept in GWT to manage history
  and navigation 
  -http://code.google.com/webtoolkit/articles/mvp-architecture.html#history

  This link gives more detail on the History concept 
  -http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsHist...

  This link describes how GWT-Presenter manages Place 
  -http://code.google.com/p/gwt-presenter/wiki/GettingStarted#The_Presenter

  My question...

  Does anyone know if and how the 2 concepts (History and Place) will
  come together? With the existence of Place, is anyone even using the
  History concept anymore?

  I ask because I plane on using the AppController concept described in
  the first link, but I'd like merge this with the Place implementation
  I see in GWT-Presenter.

  Wondering what the general consensus on this is, if one exists.

 Seehttps://wave.google.com/wave/waveref/googlewave.com/w+eva-sERfA

-- 
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 2.1 Simple Place example

2010-08-09 Thread jaybose
Check out GWT-Presenter, it has some items to help w/ Place and Place
Management - http://code.google.com/p/gwt-presenter/wiki/GettingStarted


On Jul 30, 1:00 am, Kailash Yadav yadav...@gmail.com wrote:
 Hi,

 Can anyone provide url of tutorial/document of GWTplaceor example?
 Actually I am not getting what isplacein GWT.

 Thanks

 On Jul 12, 5:50 pm, xworker blomqvist.andr...@gmail.com wrote:

  Hi all

  Strugling with finding documentation and a simple example with the 
  newPlaceconcept. Can anyone shed some light? Most examples point to
  generated scaffold code with roo. Not easy to read, and at this point
  I dont want to use Roo. Just want a simple example or explanation
  about the new concepts in 2.1 (Places,Activity).

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



History and/or Place

2010-08-09 Thread jaybose
Some background...

This link discusses using the History concept in GWT to manage history
and navigation - 
http://code.google.com/webtoolkit/articles/mvp-architecture.html#history

This link gives more detail on the History concept -
http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsHistory.html

This link describes how GWT-Presenter manages Place -
http://code.google.com/p/gwt-presenter/wiki/GettingStarted#The_Presenter


My question...

Does anyone know if and how the 2 concepts (History and Place) will
come together? With the existence of Place, is anyone even using the
History concept anymore?

I ask because I plane on using the AppController concept described in
the first link, but I'd like merge this with the Place implementation
I see in GWT-Presenter.

Wondering what the general consensus on this is, if one exists.

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