Re: MVP Question.

2010-07-11 Thread nacho
ON THE VIEW INTERFACE :) 2010/7/11 nacho vela.igna...@gmail.com Hi, i'm trying to make a view like the following that i paste. But i need to add click handlers to the links in the presenter. How could i do. I was looking the method getClickedCell in the mvp presentation but the problem

Re: Session Management on server side through timer task

2010-06-24 Thread nacho
What about the following idea. The user request some action that needs to go to the server, in your rpc in the server side you send an Exception, for example TimedOutException and in your client code check in the onFailure method which is the exception, if the Exception is TimedOutException you

Re: Invoke SOAP Web Service from GWT on the server side.

2010-06-19 Thread nacho
I had troubles trying to use JAX-WS. But i realized that the troubles were on Jetty server, so i deployed the application in a Tomcat and it works great. Maybe it could help you. On 19 jun, 09:52, Dean S. Jones deansjo...@gmail.com wrote: I gave up on alot of Java on the server side for 'glue

Can i get url parameters values in my gwt java code?

2010-06-09 Thread nacho
Hi, i want to put a parameter in the url and get it value from my gwt java code. For example, if i go in the browser to http://localhost:8080/MyApplication/Hostedpage.html?debug=true I want then in my java code do something with that value: String debugParameterValue = ?;

Re: GWT and Python

2010-05-26 Thread nacho
It's not gwt but you can try this http://ajaxian.com/archives/pyjamas-gwt-for-python On 22 mayo, 23:06, kunal ghosh kunal...@gmail.com wrote: Hi all, I was following the Google IO keynotes this year and having done so last year also noticed a few things with respect to App engine. Google

Can i run hosted mode with Tomcat?

2010-05-20 Thread nacho
Hi, i need to run hosted mode so then i can debbug the client classes. I need to use tomcat because in my project i'm using jax.ws in the server classes and when i try to use hosted mode with jetty its exploits. Can i do that? Can i debbug client classes using tomcat instead jetty? Can someone

inherints .... for every library in my project?

2010-05-20 Thread nacho
Hi. It is necesary to put in Application.gwt.xml for every one library that i use one line like the following? inherits name=com.company.product.Product/ The thing is that in my console when i run the Ant task to compile i get numerous errors. And i'm trying to use Firefox plugin, but i cant

Re: Suggestion needed in design a shops website

2010-04-28 Thread nacho
I think that you must consider about seo positioning. If you use events, you must have in mind that the search engines bots only reads html. On 28 abr, 06:36, sridevi macherla sridevimache...@gmail.com wrote: Hi Sanjeev, Thanks thats exactly i am looking for the same, but i am looking the

Re: Session Timeout Popup

2010-04-27 Thread nacho
How do redirect to another page in GWT? On 27 abr, 06:29, Sripathi Krishnan sripathikrish...@gmail.com wrote: Just have a custom class the extends AsyncCallback, like below, and mandate that everybody uses it instead of directly using AsyncCallback. public abstract class MyAsyncCallbackT

Re: RPC Obfuscation

2010-04-23 Thread nacho
I would like to know too if there anyway to ofuscate the methods On 23 abr, 15:04, Tercio terciofi...@gmail.com wrote: Well, I don't have an answer for your question, but why don't you use SSL? I can't trust my data going and coming without been encrypted. This way you don't need to worry

Compiled JS more readable?

2010-04-07 Thread nacho
Is there anyway to make that GWT when compiles the JS code uses more human readable vars? For example when i have an error like this: this.a.s.g is null The only thing that i know is that i have a null over there but i don't any idea where to search :( -- You received this message because you

About user logged

2010-01-20 Thread nacho
Hi, i want to make an application in wich the user must log in. What i do for it is i have filter defined in the web.xml wich filters all the request like /myapplication/* If the user is loged it makes the request, if not i redirect the user to the login page. My problem is when the session

How could i modify the padding in a gwt tree item

2010-01-18 Thread nacho
I want to render a gwt tree, but when gwt renders the items puts padding-left: 16px i want that gwt puts padding-left: -10px Is there any way? any method available? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

How could i get today date in a client class

2010-01-18 Thread nacho
Hi i want to do this and get today date in a client class: Date today = new Date(); but i dont't get today date, i get something wrong. -- 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: Charset Problem

2010-01-14 Thread nacho
I tried but, GWT renders the link like this laquo; Back to Inbox :( On Jan 13, 8:16 pm, Jeff Schwab j...@schwabcenter.com wrote: nacho wrote: Hi, i want to put a link like this: Hyperlink lnkBackToInbox = new Hyperlink(« Back to Inbox, #); but when i put the link in the hosted page i

Re: Charset Problem

2010-01-14 Thread nacho
On Jan 14, 9:34 am, Lothar Kimmeringer j...@kimmeringer.de wrote: nachoschrieb: I tried but, GWT renders the link like this laquo; Back to Inbox Try setting the text with setHTML instead of setting it in the constructor. What charset is specified in your development-environment when

Charset Problem

2010-01-13 Thread nacho
Hi, i want to put a link like this: Hyperlink lnkBackToInbox = new Hyperlink(« Back to Inbox, #); And in my hosted page i have the following line: meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 / also i tried with meta http-equiv=Content-Type content=text/html;

Re: Row editor plugin usage in grid

2009-12-11 Thread nacho
You must call in the listener to rpc methods and in the server side use hibernate On Dec 11, 6:00 am, Ramesh nitt.ram...@gmail.com wrote: Hi , I am using hibernate to connect to database. I want to use row editor to edit my grid records. How to add listeners for Save and Cancel buttons.

Re: My app works once deployed, but not in hosted mode.

2009-12-07 Thread nacho
Could it be that you in the server side are using a class that is not in the white list. On 5 dic, 16:00, bcr666 bcr...@gmail.com wrote: I see the blank page in the hosted browser, and if I right click and view source, the html is good. The hosted browser is not showing any of the things I put

How to create a login in gwt?

2009-11-27 Thread nacho
!-- Servlets -- servlet servlet-namehousesService/servlet-name servlet-classcom.nacho.houses.server.services.HousesServiceImpl/ servlet-class /servlet servlet-mapping servlet-namehousesService/servlet-name url-pattern/nacho/HousesService/url-pattern /servlet-mapping !-- Default

Re: GWT and FlowPlayer

2009-11-24 Thread nacho
I maded a native method to initialize Flow Player when the HTMLPanel is rendered. I hope it helps you. protected static native void play() /*-{ $wnd.flowPlayerInit(player, flowplayer/flowplayer-3.1.1.swf); }-*/; On Nov 21, 4:26 am, bmattar bassem.abdela...@gmail.com

Re: Does anyone worked with GWT connecting to Web Services in the server side?

2009-11-07 Thread nacho
error, my problem is that i can't make the GWT compiler to get run and compile the js files. How could i do? On Nov 7, 6:22 am, MarcoGT marc...@gmail.com wrote: On Nov 6, 7:43 pm, nacho vela.igna...@gmail.com wrote: Hi, i'm trying to develop an application with GWT in wich one i have

Problems with userService.createLogoutURL

2009-10-26 Thread nacho
Hi, i have an application with the following web.xml, that secure my application requesting the user login with Google Account. ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd;

How do I boostrap my Entry Point class with the User service?

2009-10-24 Thread nacho
Hi, im developing an aplication in gwt and i have an entry point class. What i do no realize how to do is how to only permit access to the user that is logged using the user service ( http://code.google.com/appengine/docs/java/gettingstarted/usingusers.html ) Do i have to put something in the

How can I remove a FlexTable?

2009-10-16 Thread nacho
Hi, i cant remove a FlexTable. This is my code: In my html div id=listado/div In my Java FlexTable listado = new FlexTable(); ... ... RootPanel.get(listado).add(listado); And then in a click handler i want to remove that table, but it doesnt erase RootPanel.get(listado).clear(); How

<    1   2