Standard vs Quirks mode also use of DecoratorPanel in Standard mode

2011-06-21 Thread Myth17
Hello Can someone describe the advantages/disadvantages of Standard vs Quirks mode. Also when to use which? (I googled around but couldnt not find something describing the issue in detail) Also I have an app in standard mode and I want to use something like DecoratorPanel for the Stylized

Help with Designing UI

2011-06-17 Thread Myth17
I want to make a mobile web Application UI where The application will have a main screen(which occupies all screen area) a stack of-- TextArea and Two Buttons.Clicking on the first buttons should give me a popup where I mark some tags about the text and after I am done click the second

GWT Mobile Application

2011-06-16 Thread Myth17
I have some experience with GWT designing web apps! However I want to make a simple mobile web app now which allows user to type a text(simple update) mark a couple of tags and post it to a database. Simple and Sweet! I would want the application to run on as many mobile phones as

Re: GWT Mobile Application

2011-06-16 Thread Myth17
Ahh it seems that WidgetDesign is in their roadmap and yet to be implemented -- http://code.google.com/p/gwt-mobile-webkit/wiki/WidgetsDesign -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

File Upload with GWT with a Dialog box to browse to the File

2011-06-06 Thread Myth17
I am working on a GWT web application where users are pushing in updates(something like twitter). The update is text+attachment. I want user to type in a update, optionally Hit the upload button , which gives a pop up to browse to the file and then when they are done finally hit the send

Working with a SuggestBox

2011-06-02 Thread Myth17
I am working on a MVP+Event Bus Architecture. I have a SuggestBox declared in a view, I want presenter to fetch list of suggestion by an RPC call. However the SuggestBox only seems to take MultiWordSuggestoracle in its constructor. And no way to add it later in presenter. :| As an Alternative

SuggestBox not showing Suggestion

2011-06-02 Thread Myth17
I have a view with a TextBox, In my presenter I populate the suggestion list with an RPC call and wrap TextBox in a SuggestionBox. The Suggestion box is not showing any suggestion. Code goes like-- citysuggest=new SuggestBox(cityoracle,display.getCityBox());//wrapping in textbox+passing

Re: SuggestBox MVP problem

2011-06-02 Thread Myth17
facing the same problem. what should be the best way around? -- 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/-/ZWgyTjRMZ2VGSjRK. To post to this

Re: SuggestBox MVP problem

2011-06-02 Thread Myth17
I am trying to make a TextBox in the view and wrap it in Suggestbox in presenter. However my suggestbox wont show any suggestion. :( why isnt a set method availaible? :| -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: SuggestBox not showing Suggestion

2011-06-02 Thread Myth17
The problem is with -- MultiWordSuggestOracle cityoracle=new MultiWordSuggestOracle(); cityoracle.addAll(citylist); The addAll() method fails to add Cities name from the ArrayListString citylist which is Strange, also using a loop to manually add String from the list using add() method fails.

Alternative to using Blob on Client Side Code

2011-05-30 Thread Myth17
I was trying to fetch a Feed object which had 'Blob' as one of its attribute(A random file attachment). However I realized that we cant use Blob on the Client side code. What should I use as an alternative? Perhaps I could pass byte arrays around but that would be a large amount of data for

Re: Alternative to using Blob on Client Side Code

2011-05-30 Thread Myth17
But the Model object in my /shared package folder need to refrence it somehow? But shared code is also used by Browser so I am not allowed to use Blob typwe. :| -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Share a Database Refrence in GWT

2011-05-26 Thread Myth17
I am working on a GWT Application which requires connection with MySQL database. I can do it successfully for a servlet. However I require multiple RemoteServiceServlets to share a single Conection refrence as creating a new one everytime makes no sense. How can I achive this? -- You

Re: Initialization Parameter in GWT

2011-05-26 Thread Myth17
This link was helpfull. Problem solved. :) http://stackoverflow.com/questions/6123806/initialization-parameter-in-gwt-for-database-connection -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Share a Database Refrence in GWT

2011-05-26 Thread Myth17
Do I need something like Struts? I dont want over complex architecture. I have no prior experience with struts Framework. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Initialization Parameter in GWT

2011-05-25 Thread Myth17
Moreover once I have the Connection reference, I would like to share it with multiple RemoteServiceServlets. How can I achieve that? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread Myth17
But my question remains same! I can do that when I have a custom widget but this time I am not writing Tree.java myself so how do I do it? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread Myth17
Actually I am trying this but cannot get it working. *Here is the code* !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui ui:with field='res'

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread Myth17
It seems to help but I still get an Cannot parse attribute resources Element g:Tree resources='res' ui:field='tree' (:10) error. :| -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread Myth17
No luck. :( I get [ERROR] [zomato] - Failed to create an instance of 'myth.social.zomato.client.Mainlist' via deferred binding :( -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread Myth17
I got the @UiFactory based code working but the purpose isnt solved yet. :) How do I make a structure as City(a image next to) -Delhi mumbai foo Right now all I have is Delhi mumbai ---foo How do I put in the City text with image? I am really sad about

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread Myth17
yup i was missing the braces and it worked out. :) -- 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

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread Myth17
I am particularly wondering looking at Google Mail sample TreeItem root = new TreeItem( imageItemHTML(images.home(), f...@example.com)); tree.addItem(root); How do i say this in Uibinder? :| -- You received this message because you are subscribed to the Google Groups Google Web

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread Myth17
But I dont see any constructor of TreeItem taking ImageResource or a setImage type function. :| -- 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

Re: Good reference book/tutorial on GWT with CSS?

2011-05-17 Thread Myth17
Even I am in a similar condition, however I have noticed that the CSS styles and rules are all similar for GWT. So learn the basic CSS and how it works and then consult javadocs for CSS rules for widgets. I am working on these lines. Hope this will be helpfull to you too. This is an excellent