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 boxes
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 bu
if I am writing a mobile app view in GWT, is dere any way I can see how my
app will look when deployed in a phone?
--
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/g
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
https
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
possible(blac
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
updat
The problem is with -->
MultiWordSuggestOracle cityoracle=new MultiWordSuggestOracle();
cityoracle.addAll(citylist);
The addAll() method fails to add Cities name from the ArrayList
citylist which is Strange, also using a loop to manually add String from the
list using add() method fails.
--
Yo
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 disc
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 g
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 M
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 Alternativ
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
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 mul
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 google-web-toolkit@googlegroup
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 google-web-t
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 recei
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 google-web-toolkit@g
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
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
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
google-web-toolkit+
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 Googl
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 google-web-toolkit@g
It seems to help but I still get an "Cannot parse attribute resources
Element (: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 google-web-toolkit@googlegroups.com.
To unsubscribe from
Actually I am trying this but cannot get it working.
*Here is the code*
http://dl.google.com/gwt/DTD/xhtml.ent";>
*And the Java File*
package myth.social.zomato.client;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
import com.googl
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 google-web-too
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 r
26 matches
Mail list logo