Re: Gwt server push

2011-12-10 Thread nacho
If you are using appengine you can try with the Channel Api http://code.google.com/appengine/docs/java/channel/ -- 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/goog

Re: Mix Fixed and Relative Column Widths in CellTable?

2011-12-08 Thread nacho
You are right, I am a total dumb. My CellTable was inside a VerticalPanel. Removing the VerticalPanel now my CellTable is displaying as I want. About what you are saying of having at least one column without width, that was my first attempt, also displaying well in FF but not in Chrome, but aga

Re: Mix Fixed and Relative Column Widths in CellTable?

2011-12-08 Thread nacho
It doesn't display the way that I'd like. I would like that my table has a 100% width so it adjust it size to the container div. Here is a capture: http://www.under-code.com/cap-celltable.png In FF It displays in the way that I want: http://www.under-code.com/cap-ff.png -- You received this

Re: Mix Fixed and Relative Column Widths in CellTable?

2011-12-08 Thread nacho
Is anyone using fixed width and relative width columns in Chrome / Mac? I would like to know if this issue that I am having is something that I am doing wrong. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on t

Mix Fixed and Relative Column Widths in CellTable?

2011-11-25 Thread nacho
I'm trying to have fixed width columns and relative width columns togheter, can't get it running. As described here http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellTable.html I am trying to do it in this way: table.addColumn(checkBoxColumn); table.addColumn(nameColumn, constants.Nam

Re: GWT - Spring Security

2011-11-24 Thread nacho
I have implemented Spring Security and GWT togheter, but what I can't figure out hw can I handle is how to logout when an RPC fails because the user is not logged in anymore. For example, the user logs in in my application, then he for example clean the browser session, so he is not logged in a

Re: Is there anyway to don't go to a place until a rpc is done?

2011-09-27 Thread nacho
For example, let's say I have a menu option "List Users", and I have a button in the List Users view that removes a User. Then a user of my app clicks in the "Delete User" button, and inmediately clicks in "List Users" option in the menu. This RPC goes to the server before that the deleteUser R

Is there anyway to don't go to a place until a rpc is done?

2011-09-27 Thread nacho
For example, let's say that I have this dummy menu [ *Goto Activity Foo* | *Goto Activity Bar* ] When I click on [ *Goto Activity Foo* ] I go to the the Foo Activity, and in the start() method I call to a rpc, let's say dummyService.fetchData(). And, then I click on the [ *Goto Acitivity Bar*

Re: Styling CellList?

2011-09-22 Thread nacho
thank :) -- 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/-/4VXQUZk0KTwJ. To post to this group, send email to google-web-toolk

Styling CellList?

2011-09-21 Thread nacho
I am trying to apply styles to a CellList, and I have this in my Java: interface MyCellListResources extends CellList.Resources { @Source({"CellList.css"}) MyCellListStyle cellTableStyle(); } interface MyCellListStyle extends CellList.Style { } cellList = new Cel

Re: How can I create a widget add it to a CellTable and perform some action when it's clicked?

2011-08-17 Thread nacho
Looks i was trying to reinvent the wheel :D Thanks! -- 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/-/2WphgIMPNWIJ. To post to this group, send e

How can I create a widget add it to a CellTable and perform some action when it's clicked?

2011-08-17 Thread nacho
I need to put some kind of Button in a CellTable column. I created a class that extends AbstractCell: public class AnchorCell extends AbstractCell { @Override public void onBrowserEvent(com.google.gwt.cell.client.Cell.Context context, Element parent, Anchor value, Native

Re: GWT Validation framework

2011-08-09 Thread nacho
Any of those validation options can be easily used with MVP & Editor fw? -- 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/-/Tnuj01pYZZsJ. To post t

Re: How to show a message while waiting on a RPC service request (not RequestFactory request)

2011-05-17 Thread nacho
Take a look to this post: https://groups.google.com/forum/#!searchin/google-web-toolkit/onreturn/google-web-toolkit/tvBFoeW3SWw/IY_CVamzTkYJ With this approach your message will show while there is at least one rpc call that hasn't finished. When all your rpc calls finish your message will be h

Re: GWT deployment

2011-05-17 Thread nacho
You can create an ant task to compile your gwt app and create a war. Try with something like this:

Re: Temporary disable URL changes when using Places?

2011-05-10 Thread nacho
You have to put in your PlaceHistoryMapper only the places that want to handle with the history handler. "PlaceHistoryMapper is the link between your PlaceTokenizers and GWT's PlaceHistoryHandler that synchronizes the browser URL with each Place." http://code.google.com/webtoolkit/doc/latest/De

Re: Loading thumbnails of images as links in gwt

2011-04-22 Thread nacho
A link to do what? Go to another page? Stay in your hosted page and display another widget or perform some action? -- 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. T

Re: compiling projects with multiple GWT Client modules

2011-03-11 Thread nacho
On Friday, March 11, 2011 1:19:32 AM UTC-3, zixzigma wrote: > > Hello Everyone, > > I have broken my Client side part of my GWT app, into several gwt modules, > - a common module configuring EventBus,PlaceController,ActivityMapper, + > EntryPoint) > - several modules each corresponding to a Fu

Re: What do you think about my Session flow?

2011-03-11 Thread nacho
I have a login.jsp with the login form. And a hostedPage.jsp where the user is redirected after his logged in. Also I have a MyServiceServlet that extends RemoteServiceServlet. In this class I overrided onBeforeRequestDeserialized and I check if the user if logued in. If he is not, I throw an A

Re: Where to place external libs?

2011-03-08 Thread nacho
*lin = lib -- 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 o

Re: Where to place external libs?

2011-03-08 Thread nacho
Did you added your lin to your class path? -- 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

Re: Spring GWT Integration

2011-02-25 Thread nacho
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-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options,

Re: Including gwt-widgets in a servlet generated page

2011-02-17 Thread nacho
Yes, it's simple, create a GWT Module for each entry point that you need. Then create, for example a new JSP file called MyModule.jsp and copy from your recently created hosted page (.html) the

Re: Including gwt-widgets in a servlet generated page

2011-02-11 Thread nacho
In the same way that in a html page. http://code.google.com/intl/es-AR/webtoolkit/articles/dynamic_host_page.html#servlet -- 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

Re: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException

2011-02-11 Thread nacho
I think that your trouble is that the classes compiled to JS are different to the classes that you have in the server. Using dev mode after change in a class that I use in a RPC I just reload the page and the problem is gone. -- You received this message because you are subscribed to the Googl

Re: Info. about Gmail Contextual Gadget

2011-02-10 Thread nacho
http://code.google.com/p/gwt-google-apis/wiki/GadgetsGettingStarted http://code.google.com/intl/es-AR/apis/gadgets/docs/dev_guide.html -- 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-toolki

Why my app isn't getting the locale from the browser preferred languages?

2011-02-08 Thread nacho
I'm using FF in Mac. I have "es-ar" as the only preferred language. I'm using i18n with Constants. I have this in my Module Descriptor And, i can't see my app in the "es" locale being the one selected as preferred in FF. But if I go to http://localhost:/?gwt.c

Re: Append #name to URL

2011-01-31 Thread nacho
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/History.html -- 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: I18N compilation error

2011-01-31 Thread nacho
Do you have your resource properties file? "*Begin by creating a default properties file called MyConstants.propertiesin your GWT project. You can place the file anywhere in your module's source path, but the .properties file and corresponding interface must be in the same package. It's fine to

Re: BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-27 Thread nacho
Great -- 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 option

Re: BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-26 Thread nacho
Google People, what do you recommend if we want to use MVP & Editor Framework togheter? -- 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 gro

Re: Widget Library

2011-01-24 Thread nacho
Check this post: http://swe-strongsteve.blogspot.com/2010/11/creating-re-usable-composites-using-gwt.html -- 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 unsubsc

Re: GWT extension libraries

2011-01-24 Thread nacho
I think that the widgets in those libs are dirty (dispite beying useful sometimes). -- 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,

Re: GWT Special Features compared to other Frameworks

2011-01-24 Thread nacho
+10 for GWT making web development enjoyable again. -- 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

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

2011-01-17 Thread nacho
;) -- 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,

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

2011-01-17 Thread nacho
Try with this build.xml When you compile gwt first your java classes are compiled.

Re: No Log messages at level INFO in eclipse.

2011-01-14 Thread nacho
If you are using dev server, try to update your appengine sdk. I was having the same issues and now using appengine-sdk-1.4.0 I can log with INFO level. -- 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: GWT External JARs and use on the Client Side

2011-01-14 Thread nacho
You can include JARs, but those JARs must include the source code. -- 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 goo

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

2011-01-12 Thread nacho
In previuos releases of the sdk if you create your project using webAppCreator the build.xml was created. I believe that with gwt 2.1 must be created too. Try using that tool and then import your project to ecplise. -- You received this message because you are subscribed to the Google Groups

Re: gmail/facebook like chat -asp.net

2011-01-11 Thread nacho
I think that there's betters places to ask what you need. -- 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-t

Re: I need your help error: An IncompatibleRemoteServiceException was thrown while processing this call

2011-01-08 Thread nacho
Try to recompile your gwt code. -- 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...@google

Re: deploy GWT app with Tomcat istead GAE..

2011-01-08 Thread nacho
If you need I can give an example of an ant.xml that compiles your gwt code and then makes the war. So you can run the ant task and then upload the war file to your tomcat. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: How to skip history token on place change? (Activies, Places and History management)

2011-01-08 Thread nacho
If you don't add MyPlace.Tokenizer.class to your AppPlaceHistoryMapper the activity will be fired but the history won't change -- 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...@googleg

Re: GWT 2.1 compiler option : -noserver

2011-01-07 Thread nacho
Is this package com.xyz.dashboard.prototype.gwt.widget translatable to js? You should insert a line in your MyModule.gwt.xml like this -- 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

Re: deploy GWT app with Tomcat istead GAE..

2011-01-07 Thread nacho
Look here http://code.google.com/intl/es-AR/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: BlobInfo using the BlobKey

2011-01-07 Thread nacho
You should post your answer in Google Appengine group https://groups.google.com/forum/#!forum/google-appengine -- 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 un

Re: GWT 2.1 MVP Multiple activities clarification help

2011-01-07 Thread nacho
Very nice example Mauro! -- 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.c

Locale setting priority

2011-01-06 Thread nacho
Hi, i'm using locale with constants. If I print this when I render my jsp for the hosted page And the user adds to the url the param ?locale=en Wich one of the two locale has priority? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. T

How can I know if my script is running inside an iframe or not?

2011-01-05 Thread nacho
I have a script that sometimes will run inside an iframe an sometimes not. How can i know if the script if running inside an iframe? Another doubt, if the script is running inside the iframe how can i redirect the parent window? If I do Window.Location.assign("/newUrl") obviusly the content of th

Re: How to write file with GWT?

2011-01-05 Thread nacho
Can't you deploy your app in a Tomcat? If you do this, you don't have any restriction. On 4 ene, 17:18, "a...@mechnicality.com" wrote: > Yes, but that doesn't actually 'write' the file does it? > > It just generates a String which contains the XML representation of the java > object. Its not >

Re: Logging in shared code

2011-01-05 Thread nacho
I have a similar issue with translations in shared code. Is there any way to know if the code is running on server side or running in client side? For example: if (isRunningOnClient) { Window.alert(myConstants.hello()); } else if (isRunningOnServer) { System.out.println(myResources.getStri

Re: deploy new server version - how to inform clients?

2011-01-04 Thread nacho
When you call to your services you can do something like this in your AsyncCallback public void onFailure(Throwable caught) { if (caught instanceof IncompatibleRemoteServiceException) { Window.Location.assign("/newUrl"); } } Regards. On 4 ene, 09:22, Nirmal Patel

Re: How to get a widget from another panel

2011-01-03 Thread nacho
Just add the widget to the panel that you want. panel.add(widget); On 3 ene, 00:29, Néstor Boscán wrote: > Hi > > I have a GWT application with two panels. How to I get a Widget from one > panel from the other panel?. > > Regards, > > Néstor Boscán -- You received this message because you are

Re: File choose

2011-01-03 Thread nacho
Take a look to the gwtupload project source http://code.google.com/p/gwtupload/ On 3 ene, 08:44, jc wrote: > I am using only GWT code for file choosing, but posting code are in > javascript and HTML 5. I know only the java and not other. So i need > app for GWT for read, write and access file. P

Re: Happy New Year

2011-01-02 Thread nacho
++; On 1 ene, 16:08, gopal bhalala wrote: > Happy New Year to all > > Best Regards & Thanking you, > Gopal Dhanjibhai Bhalala > > On Sat, Jan 1, 2011 at 9:27 PM, Duong BaTien wrote: > > Happy New Year to all participants in GWT, GAE and Objectify. > > > On Fri, Dec 31, 2010 at 12:33 PM, Jeff Sch

UiBinder i18n best practices?

2010-12-30 Thread nacho
Hi, i would to know about your experience with UiBinder and i18n? Wich is is the best way to do this? Thanks in advance! -- 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

Re: Is there anyway to choose language in runtime?

2010-12-30 Thread nacho
google.com/samples/Showcase/Showcase.html?locale=fr_FR#!Cw... > > (See the locale selector in the upper right.) > > http://code.google.com/webtoolkit/doc/latest/DevGuideI18n.htmlhttp://code.google.com/webtoolkit/doc/latest/DevGuideI18nLocale.html#... > > On Dec 28, 12:21 pm, nacho

Re: New user - how to create new GWT project

2010-12-30 Thread nacho
http://code.google.com/intl/es-AR/webtoolkit/doc/1.6/DevGuideServerCommunication.html#DevGuideCreatingServices On 27 dic, 19:12, xdzgor wrote: > Hi - I am using Eclipse to create a GWT-based application. When I > create a new "GWT remote service", an interface called, for example, > "MyTestServic

Re: Tomcat - Failed to get the SerializationPolicy (gwt/rpc)

2010-12-28 Thread nacho
I think that you forget in any of your model classes to implements com.google.gwt.user.client.rpc.IsSerializable; Every class that you want to send through a RPC you need to make it implement com.google.gwt.user.client.rpc.IsSerializable; If this is not your problem, be sure that you have a zero-

Re: GWT Application Login/Logout

2010-12-28 Thread nacho
On 27 dic, 04:01, "katampa...@gmail.com" wrote: > Hi, > >       I am developing RIA with GWT frame work which is built using MVP > architecture [Views, Places, Activities & model]. This application > include login page, main page and logout page etc.. Each page is made > as a view and these page

Re: handling session timeout - is there a central hook?

2010-12-28 Thread nacho
In the server side I created a class (MyServiceServlet) that extends from RemoteServiceServlet and in the method onBeforeRequestDeserialized(String serializedRequest) i check if the user is logued. If is not, i throw a AuthenticationException. And in the client side I created a abstract class that

Is there anyway to choose language in runtime?

2010-12-28 Thread nacho
Hi, i'm using i18n with Constants, i have two languages {ES, EN} and it runs ok. What i need that when the user choose another language in a combo, for example [Spanish] show the content of my app in Spanish. What i'm doing is to redirect to the user to my app url passing the locale as parameter.

Re: Calling Server Side code on Client Side

2010-12-11 Thread nacho
Hi Taurun. You can use in your client code classes that you are using in the server. For example, your model classes. But, you can't use in those classes any class that you don't have the source. Suposse that you have a model class: User.class, in this class, all the code must be translatable (you

Re: Is there a way to use i18n in a shared class that works on client and server too?

2010-12-09 Thread nacho
Any idea? Noone did this before? On 19 nov, 12:36, nacho wrote: > I have some Validators classes. I use those classes in the client > code, so I think to use Constants: > > For example, in some part of my AccountValidator I have this: > > errors.add(myConstants.accountTypeReq

Re: WEB SERVICES

2010-12-09 Thread nacho
n't > permit me to add a webservice because my project has not a server > (Tomcat). > Have you created a gwt project that can run on Tomcat with eclipse + > gwt eclipse plugin? > > Can you give me some suggestions? > > Thanks very much > > Daniele > > On 5 Dic, 1

Re: WEB SERVICES

2010-12-05 Thread nacho
What i did was interact to the ws in my gwt app server code. What i mean is, for example, if you are using RPC to comunicate to your server, that you need to call to your ws in your MyServiceImpl class and that's all. But i have to say to you, that i needed to use JAX-WS and this lib is not suppo

Is there a way to use i18n in a shared class that works on client and server too?

2010-11-19 Thread nacho
I have some Validators classes. I use those classes in the client code, so I think to use Constants: For example, in some part of my AccountValidator I have this: errors.add(myConstants.accountTypeRequired()); That works great for GWT compiled code. But what about if I need to use this same vali

Re: GWT + MySQL

2010-11-07 Thread nacho
Are you running the app in the Jetty server provided by the Google plugin? This server emulates appengine enviroment and you must use classes that are in the appengine whitelist: http://code.google.com/intl/es-AR/appengine/docs/java/jrewhitelist.html Try running your app in a Tomcat. On 7 nov, 0

Re: GWT + JDO (GAE)

2010-11-07 Thread nacho
+1 On 7 nov, 11:17, Jeff Schwartz wrote: > +1 > > On Sun, Nov 7, 2010 at 5:46 AM, Shawn Brown wrote: > > > > >  Hi, > > > > I've been using JDO these weeks. I've followed the tutorial at GAE > > > Docs, and I learned how to create and get entity objects. > > > It just my opinion based on struggli

Re: File Upload from jsp through GWT client

2010-10-27 Thread nacho
Have you tried this lib? http://code.google.com/p/gwtupload/ On 27 oct, 12:00, WL wrote: > Hi , > > I’m working on a application which has GWT client and jsp’s. > The Layout of the page is designed in the GWT client and the body of > the page is taken from the jsp.  I want to do a file upload fro

How can i delete a GWT Module?

2010-10-27 Thread nacho
I made a GWT module in eclipse (File -> New -> Module) And now, i want to delete that module. I already deleted MyModule.gwt.xml and MyModule.java (entry point class). But when i try to run my application i get this in my console: Loading modules com.mycompany.myapp.MyModule [ERROR] Una

Re: Servlet mappings in GWT development mode

2010-10-27 Thread nacho
Yo say that you can enter in http://localhost/foo.html but then you say that you want to enter to http://mymachine:/foo.html?gwt.codesvr=mymachine:9997 What about if you enter to http://127.0.0.1:/foo.html?gwt.codesvr=127.0.0.1:9997 On 26 oct, 19:39, Constantin Tanno wrote: > My GWT ho

Re: How can I het a URL link to open up my web app passing an argument?

2010-10-27 Thread nacho
great :) On 27 oct, 08:17, novarse wrote: > great, thanks nacho. exactly what i wanted > > On Oct 27, 4:01 am, nacho wrote: > > >http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/g... > > > On 26 oct, 07:59, novarse wrote: > > > >

Re: How can I het a URL link to open up my web app passing an argument?

2010-10-26 Thread nacho
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/History.html On 26 oct, 07:59, novarse wrote: > Hi all, > Lets say I have a twitter message containing an URL link which has an > event Id as an argument somewhere as part of the URL > e.g. "Next event is tuesday.

Re: createLoginUrl not working in gwt dev mode (GWT and GAE tutorial)

2010-10-22 Thread nacho
I made something like that in a servlet: I have this method in my servlet: private boolean isDevelopment() { return ( SystemProperty.environment.value() == SystemProperty.Environment.Value.Development ); } so you can do something like this: String redirectUrl = "/MyApp.html"; if (isDev

Re: how to dim background while showing a DialogBox?

2010-10-20 Thread nacho
I didn't knew about this. So, so, so nice. That's why i love gwt :) On 20 oct, 09:57, "marius.andreiana" wrote: > On Oct 20, 1:58 pm, Lothar Kimmeringer wrote:> Am > 20.10.2010 12:51, schrieb marius.andreiana: > > > > Do you have any suggestions on how to dim background while showing a > > >

Re: How to implement UserAuth / Login in GWT2.1

2010-10-19 Thread nacho
Are you looking something like this? http://code.google.com/intl/es-AR/webtoolkit/articles/dynamic_host_page.html On 19 oct, 08:41, Patrick Hilsbos wrote: > Hi, > can someone tell me how to implement an user auth - using > userinformation in gwt2.1? > > i already got, that i should subclass User

Re: calling GWT Javascript compiler from ant

2010-10-04 Thread nacho
Try with this:

Re: Send e-mail in GWT

2010-10-04 Thread nacho
You can use appengine to deploy your app and use the appengine mail api. On 4 oct, 09:41, Jeff Chimene wrote: > Since you want the recipient address hidden, you cannot use GWT[1]. You'll > have to send a request to the server and have it compose and send the email. > > [1] > Otherwise, you'd use

Re: Any recommended input validation lib?

2010-09-28 Thread nacho
nd, by the way, what about a fluent builder API for forms like the > > one in gwt-mosaic? Badly missing something like that in GWT. > > > brgds, > > > Papick > > > On 27 Sep., 10:51, Thomas Broyer wrote: > > > > On Sep 27, 2:47 am, nacho wrote: >

Re: Datastore

2010-09-28 Thread nacho
I'm also using Objectify and it is great and simple On 25 sep, 06:09, Didier DURAND wrote: > Hi Trevor, > > I would suggest giving also a try to Objectify which a layer on top of > raw Datastore: it makes access to data much easier and has a lower > learning curve than JDO. > > Seehttp://code.goo

Any recommended input validation lib?

2010-09-26 Thread nacho
Hi, searching on google i've found a few gwt validation libraries. I would like to know if you are using anyone in special or if you have tested some of them. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send ema

Re: GWT save and modify in database(mysql)

2010-09-21 Thread nacho
I see lot of code but what is your trouble / question? On 20 sep, 07:34, Buica Tatiana wrote: > So i had to do the following assignment in GWT: > > 1.Implement a selection/de-selection component as described below: > The selected item in the first list goes into the second list and is > remov

Re: GWT and concurrency

2010-09-19 Thread nacho
I don't jnow if this is what you are searching but http://download.oracle.com/javase/1.5.0/docs/api/java/util/ConcurrentModificationException.html is in the jre emulation http://code.google.com/intl/es-CL/webtoolkit/doc/1.6/RefJreEmulation.html On 19 sep, 10:53, Blagoja Chavkoski wrote: > Hi,

Re: how do i do Gadget read/write file?

2010-09-19 Thread nacho
1) Let the user upload a file to your server and then parse it. 2) Create a file in your server and send it to the browser so the user can download it. On 14 sep, 22:50, Alex wrote: > 1)How do i read a file in client side, i want my gadget to read a file > and parse it. > 2)how do i have my gadge

How to handle every key down event in the page?

2010-08-19 Thread nacho
I've found this class, but i can't get an example about how to use it. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/event/dom/client/HandlesAllKeyEvents.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To po

Re: I need a little help with request builder

2010-08-16 Thread nacho
Yes, i thought to do in that way. But the trouble is that i need to work with 3 files, and i need to execute more than one method over the file contents, so that was that i was wondering some how to make sure that the content was loaded and then work with it. On 16 ago, 14:45, André Moraes wrote

I need a little help with request builder

2010-08-16 Thread nacho
Well, the trouble is not exactly with request builder. The thing is like this. I have a class BinFileReader that in the constructor receives an url an read it address file contents. And the class haves some methods, like readString(), readInt, readByte, etc. But, obviusly, first at all, to execut

Re: multi-file selection upload - swfupload can work with gwt?

2010-08-02 Thread nacho
I think that GMail now is using html5. On 31 jul, 15:26, "buz...@gmail.com" wrote: > There is a project called swfupload-gwt, which embeds multi-file > upload capabilities into gwt application. > We are using that in several applications, so it is quite stable. > Without Flash you can opt for HTM

Re: How to use external jars and java.awt on server side

2010-08-01 Thread nacho
If the lib is not supported by app engine you will need to deploy into another server, for example a Tomcat. On 30 jul, 19:24, RhinestoneMaster wrote: > We're trying to convert a pdf to an image using a software called > JPedal. This software is in an external jar. Our development > environment i

Re: Tree Padding

2010-07-28 Thread nacho
jejje yes i pulled out all my hairs from the head when i was fighting with that. On 28 jul, 11:36, "David E." wrote: > Thanks for the response Nacho. > > I got too frustrated trying to work with the GWT Tree implementation, > so I just rolled out my own from scratch. It&#x

Re: How to show server log file on the client?

2010-07-28 Thread nacho
and if you have a timer that runs every 5 seconds for example and you call a rpc and get the last logs entries on the server? On 28 jul, 02:21, Magnus wrote: > Hi, > > I would like to show the contents of a log at the client side: > > There is a complex operation (chess move analysis) on the

GWT Rocks!

2010-07-27 Thread nacho
Hi, i just must say that i like GWT more and more every second!!! In argentinian 'GWT es una masa!!!' In spanish 'GWT está de puta madre!!!' Nothing more, i had to share my felling :D -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: Strange Mail from group 'islam'

2010-07-27 Thread nacho
i receive a mail of that On 26 jul, 16:48, Breno Gomes wrote: > yes > > 2010/7/26 Nabeel Ali Memon > > > No, i've never been hit by spam due to signing up with gwt mailing list :) > > > Nabeel > > > On Mon, Jul 26, 2010 at 9:39 PM, jsaar wrote: > > >> After having posted a question to GWT ... >

Re: Tree Padding

2010-07-27 Thread nacho
Something like that happened to me. What i did was the following. For example: In the css: #container div { padding: 20px; margin: 20px; } Play with padding and margin and it could help you. On 25 jul, 21:11, "David E." wrote: > I'm trying to control the margin, image size and padding in

Re: Css Calendar using GWT

2010-07-27 Thread nacho
Jejej i was thinking in do myself something like that. it's nice On 26 jul, 09:30, Peter Simun wrote: > Seems not working for me in FF, I'm not able to click on the date in > the calendar. > Is there any official project site? > > Peter > > On 25. Júl, 23:39 h., dodo dard wrote: > > > Hello, >

Re: How to create a GWT Library?

2010-07-27 Thread nacho
> > hi.its fairly easy to do.just google for a gwt module howto > > > On Jul 23, 6:14 pm, nacho wrote: > > > > Hi, i'm looking some info about how to create and package my own gwt's > > > lib. > > > > Does anyone know where can i find some tu

How to create a GWT Library?

2010-07-23 Thread nacho
Hi, i'm looking some info about how to create and package my own gwt's lib. Does anyone know where can i find some tuto? -- 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.

Re: GWT app looks ugly in IE6

2010-07-23 Thread nacho
Is so easy and free to install FF in any computer, that i don't know why developers must keep loosing time with IE6. When someone's want's a web development we must say "Ok, but i will not do it IE6 compliant", Google doesn't losses any more time in that, why should we? I don't loose time in that

Re: Draggable widget

2010-07-23 Thread nacho
Are you using Fred Sauer's gwt-dnd? If you are using it, this could help you. Fist at all follow Fred's example: http://code.google.com/p/gwt-dnd/wiki/GettingStarted Now you must make a change to your widgets, first your widget class must implement HasDragHandle. And second i guess that you want

  1   2   >