Issue with Generated Sources (by RestyGWT) not Compiling, When including a class from an external GWT module.

2015-05-22 Thread Mário Costa
Hi! After fighting with this, issue in all possible dimensions, hope to find some one who've manage to solved something similar ... I'm using RestyGWT, to implemente a GWT app "RPC". I've defined a service, class MyService extends RestService { @GET public void getResults(MethodCal

IE9 GWT Error loading images

2013-06-24 Thread Luis Costa
Hi all, I'm using GWT 2.5.1 and I've a browser compatibility issue, when I open my application in Chrome everithing works fine but when I open my application in IE8 this error occurs: "Unable to get property 'currentStryle' of undifined or null reference in http://localhost:8080/XXX/sc/modules/

Re: CellTable disapears when a row click occurs and a RichTextArea widget is present

2013-06-07 Thread Luis Costa
I cant replicate this problem that was occuring yesterday. thank your for your help but for now this problem seems to be resolved. Quinta-feira, 6 de Junho de 2013 19:58:56 UTC+1, Luis Costa escreveu: > > Hi all, > > I'm using GWT 2.5.1 and GWTP. > > Something very stran

Re: CellTable disapears when a row click occurs and a RichTextArea widget is present

2013-06-06 Thread Luis Costa
Here it is a simple case (see attachment) Quinta-feira, 6 de Junho de 2013 19:58:56 UTC+1, Luis Costa escreveu: > > Hi all, > > I'm using GWT 2.5.1 and GWTP. > > Something very strange is happening, I've a RichTextArea widget and a > cellTable. > > >

CellTable disapears when a row click occurs and a RichTextArea widget is present

2013-06-06 Thread Luis Costa
ing in the cellTable/ DataGrid row) it works fine; Is this a known problem? Many thanks, Luis Costa -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an

Browser compatibility issue

2013-06-01 Thread Luis Costa
owing SimplePanel in Safary and Chrome it appear filling all browser width but in IE and Mozilla it doesent. Is this a know problem? Many thanks, Luis Costa -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit&

Re: GWT + PHP

2013-05-09 Thread Larissa Costa
Sorry Juan, But I want to get the response from PHP script. This PHP script is only a sample. 2013/5/9 Juan Pablo Gardella > Try with > http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/i18n/client/Dictionary.html > . > > > 2013/5/9 Larissa Costa

GWT + PHP

2013-05-09 Thread Larissa Costa
Good morning! I have a php script like this: *";* * }* *?>* And a variable in my GWT code: *String = **responsePHP = "";* Is there a simple way (or not) to get the response from PHP script and put in variable GWT? -- You received this message because you are subscribed to the Google G

Facebook login button

2013-05-03 Thread Larissa Costa
Hi, I've never worked with the facebook and I need help. I have a website (GWT) and I wanted to connect it with facebook to get some information about the user. For example, put a login button on the home page of my site. Does anyone know how I can do this? Anyone have one example? Thank you

GWT Image editing

2013-04-29 Thread Luis Costa
Hi all, I’m using GWT 2.5.1, and I’m trying to create a component that allows the application user to edit an image, the workflow is: 1. User can perform a mouse click on a certain part of the image “A” (that was previously uploaded); 2. This event will put in the image clicked c

Re: Enabled disabled GWT ValueListBox

2013-01-19 Thread Luis Costa
an enabled) { DOM.setElementPropertyBoolean(getElement(), "disabled", enabled); } Sábado, 19 de Janeiro de 2013 17:51:43 UTC, Luis Costa escreveu: > > Hi all, > I'm using GWT 2.5 and I'm wondering if there's an easy way to enabled / > disabled ValueListBox, after

Enabled disabled GWT ValueListBox

2013-01-19 Thread Luis Costa
Hi all, I'm using GWT 2.5 and I'm wondering if there's an easy way to enabled / disabled ValueListBox, after a careful look: DateBox, TextBox implements com.google.gwt.user.client.ui.HasEnabled but in other hand ValueListBox dosent I could extend com.google.gwt.user.client.ui.ValueListBox and im

GWT Reflection

2013-01-11 Thread Luis Costa
Hi all, What’s the best way to invoke a method by reflection using GWT, converting something like this: GreetingServiceAsync service = GWT.create(GreetingService.class); AsyncCallback callBack = new AsyncCallback< Void>() { @Override

Re: How not expose method to client when using RCP

2012-12-11 Thread Luis Costa
Hi Jens, Thanks for your answer, the point here is who owns the contract (interface) server or client? In my perspective is the server, and so this interface could have more than just methods to be expose to client side, in others technologies it can be defined which methods are expose to cl

Re: How not expose method to client when using RCP

2012-12-10 Thread Luis Costa
Correction: RCP I mean RPC :) Segunda-feira, 10 de Dezembro de 2012 9:53:44 UTC, Luis Costa escreveu: > > Hi all, > > I’m using GWT 2.5, and RCP to exchange information between client and > service. > > I’m trying to define the interface that extends RemoteService and anoth

How not expose method to client when using RCP

2012-12-10 Thread Luis Costa
Hi all, I’m using GWT 2.5, and RCP to exchange information between client and service. I’m trying to define the interface that extends RemoteService and another one CRUDService that has among others (CRUD methods) a method: public Class getDtoType(); But this method is only intended to b

Is there a way to use tablayoutpanel without headers?

2012-06-26 Thread Luis Costa
I'm trying to find a gwt widget like tablayoutpanel but without headers, where I can programmatically set the selected tab (like tablayoutpanel does). Does anyone knows if thers a way to use tablayoutpanel with no header? Or is there any other widget more indicate to this cases? Tanks, Luis. --

Re: Fetching images for users: where to put them?

2012-04-04 Thread Matias Costa
In web.xml: imageReceiver xxx.ImageReceiver imagePath /the/place And in the servlet: public void init(ServletConfig servletConfig) throws ServletException{ imagePath = servletConfig.getInitParameter("imagePath"); if (!imagePath.endsWith(File.separ

Re: UiBinder and abstract class

2012-03-29 Thread Luis Costa
Hello all, I'm having the same doubt, Damians, did you put your code working? I'm having the same error. Thanks, Luis. Segunda-feira, 1 de Fevereiro de 2010 11h22min10s UTC, damians escreveu: > > Hello, > > I've got a problem and i googled lots of pages to see if anyone got > the same problem but

Error using abstract class uiBinder

2012-03-29 Thread Luis Costa
Hello, I'm using GWT SDK 2.4.0 and I'm trying to create an abstract class ( AbstractContentView ) that will be extended by Content1. AbstractContentView will have common code and uiFilds (like buttons etc.) Content1 will had himself to AbstractContentView using "setContentWidget(this);" But I'm

Re: How to share classes between two different modules with two different pages

2012-03-22 Thread Matias Costa
And you have in moduleB.gwt.xml ? El jueves 22 de marzo de 2012 14:46:07 UTC+1, Deepak Singh escribió: > > It did not work. > > > -- 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.g

Re: How to share classes between two different modules with two different pages

2012-03-21 Thread Matias Costa
I would create a base module from which A and B inherit. Or you can try in moduleB.gwt.xml El miércoles 21 de marzo de 2012 16:16:46 UTC+1, Deepak Singh escribió: > > Yes i have two seperate *.gwt.xml for both the modules. > And i inherit ModuleB into moduleA as follows: > > ModuleA.gwt.xml >

Re: MVP and RPC: What makes sense?

2012-02-20 Thread Matias Costa
> why should the View tell the Presenter "get the file" and the Presenter the tell the > view "show this file". Because : 1) Error handling, this complicates the logic. 2) Display independence. Useful if you go mobile or more usual, while you create a new version of the interface, you can have

Re: Is it bad practice to use links like "#viewObject104" instead of eventBus.fireEvent(viewObjectEvent(id)) ?

2012-02-09 Thread Matias Costa
> I personally prefer links, because it also allows the user to open the > link in another window or tab. And the history works -- 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.goo

Exit in this group

2012-01-31 Thread Victor Costa Santiago
I would like to unsubscribe from this group and not receive any more messages. 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-toolkit@googlegroups.com. To unsubscribe from this group,

Cancel my account

2012-01-10 Thread Victor Costa Santiago
Please remove my account in the group. Thank's Victor -- 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-too

How to intercept GWT RPC

2011-10-04 Thread Costa
Hi, I would like to encode information of the current session, such as the session Id, current user for each GWT RPC call, how can I add this in the RPC request and response? Thanks, Costa -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit&q

TreeGrid

2011-06-23 Thread Victor Costa Santiago
Hello good afternoon! Need help from you guys regarding a question / problem ... I have an XML like this ABC 1 0 WAS DEF 2 1 Method GHI 3 2

Gwt-Connectors + Print

2011-01-24 Thread Victor Costa Santiago
Hello good evening! Smartgwt am using 2.0.4 and 1.7.1 gwt-connectors. An example of my problem is the address: http://code.google.com/p/gwt-connectors/ I am trying to print the diagram, but connectors and lines are becoming invisible. Even in print preview. Anyone know how to fix it? I tried using

Re: !!!GWT-CONNECTORS PRINTING PROBLEMS!!!

2011-01-20 Thread Victor Costa Santiago
tested in Firefox 3.6.9 and print IE8. Even following the path file> Print View is the problem. Thanks! 2011/1/19 Chris Conroy > !!!POSTING LIKE THIS IS REALLY ANNOYING. PLEASE REFRAIN FROM DOING SO. > THANK YOU!!! > > On Wed, Jan 19, 2011 at 6:55 PM, Victor Costa Santiago < &g

MenuBar-smartgwt

2010-12-26 Thread Victor Costa Santiago
Good morning everyone! I work with smartgwt. Could someone help me on how to create a dynamic menu bar in GWT. I researched a lot about using the Internet but not the MenuItem.enableIf encountered examples.When trying to to use setEnabled ( true /false ) presents problems with the dynamism of css,

Problems with keyboard events+MenuItem+gwt-print-it

2010-12-05 Thread Victor Costa Santiago
Good morning everyone! I'm having problems with updating the look of MenuItem smartgwt. I'm leaving the subitems disabled and enabled dynamically, but the look is not, has problems, only updates the look when the cursor is over the icon, but needs to be updated to access the menu, follow what I'm t

GWT: problems with gwt-diagram-gwt, gwt-visualization and gwt-connectors

2010-11-06 Thread Victor Costa Santiago
Hello good day! I am new to the group and my English is not very good (I am Brazilian and -.-"),i'm new to GWT and java. Well, I need to implement the service system so that when you click a button to open one within the window and should have a diagram on the system screens. for example:

Re: GWT and WebGL

2010-10-19 Thread Matías Costa
Well, Look what these guys did: http://code.google.com/p/quake2-gwt-port/ <http://code.google.com/p/quake2-gwt-port/>If they could... why don't you? El 18 de octubre de 2010 18:38, Matías Costa escribió: > I think you can't. It should be a massive work. I have no idea about

Re: GWT and WebGL

2010-10-18 Thread Matías Costa
I think you can't. It should be a massive work. I have no idea about how bullet works, but tricking it to use a webgl context must be hard, next to imposible. GWT is a Java to Javascript compiler. It is no magic java in a webpage. The java code must comply various constraint to be able to translat

com.google.gwt.user.client.rpc.SerializationException

2010-09-07 Thread Costa
Please help with error below. Is this mean that the class com.voxbone.voxAPI.Country could not be serialize or it is just simple NoClassDefFoundError ? Exception while dispatching incoming RPC call com.google.gwt.user.client.rpc.SerializationException: Type 'org.dozer.MappingException' was not in

Error occurred in deployement on glassfish with GWT 2.0 and EJB 3

2010-02-22 Thread Daniel Da Costa
Hi, i have a big problem, when i try to deploy my EAR project (containing GWT and EJB project) on Glassfish V3 i have this error: "Exception while loading the app : java.lang.RuntimeException: Unable to load EJB module. DeploymentContext does not contain any EJB Check archive to ensure correct pa

JSONParser bug ?

2010-02-04 Thread Costa
I have attempted the following code snippet: String data = "new $wnd.Date(2010,0,28,17,8,48,0)"; JSONValue value = JSONParser.parse(data); To my dismay it returns a JSONNumber !! Now I looked in the source code (JSONParser.java: parse, evaluate & createObject) and I created the following test pr

findResource(DynaTable/html.gwt.xml) --> Resource not found, returning null

2010-01-03 Thread Costa
Hi All I am trying to start hosted mode for DynaTable samples from GWT2.0.0 using command line(see below): This sample works very very in all previous gwt versions. [ERROR] Unable to find 'DynaTable.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for

Re: Targettting Rhino with GWT compiler

2009-10-23 Thread Matías Costa
On Tue, Oct 20, 2009 at 3:53 PM, Attila Szegedi wrote: > > Hi all, > > I really like the development model of GWT - using Java for > development, with all its type robustness and refactoring > friendliness. I have a rather large JS system that badly needs > rewriting after five years of increment

Re: date incompatibility between GWT java.util.Date class and the javascript Date

2009-09-01 Thread costa
Nobody there? Should I fill in a bug report? As it is right now I don't think using java.util.Date to pass dates to a remote service is reliable in the web mode and there can be very subtle bugs that are hard to track. --~--~-~--~~~---~--~~ You received this message

Re: date incompatibility between GWT java.util.Date class and the javascript Date

2009-08-31 Thread costa
I am using GWT 1.5 --~--~-~--~~~---~--~~ 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 go

Re: date incompatibility between GWT java.util.Date class and the javascript Date

2009-08-31 Thread costa
It turns out that the problems that I am having stem from the way the daylight savings time dates are calculated in the browser vs. java. Here is a link with the US & Canada DST periods: http://www.timeanddate.com/news/time/us-daylight-saving-extended.html For instance in 2005 the daylight savin

date incompatibility between GWT java.util.Date class and the javascript Date

2009-08-31 Thread costa
Hello: I came across this weird bug where I had code that created a java.util.Date based on the value returned by the javascript Date.getTime method. Example: Javascript (IE 7, FF 3.5): new Date(2002, 02, 20) is: Wed Mar 20 2002 00:00:00 PDT 2002 Java: new Date(102, 02, 20) is: Wed Mar 20 00:00

java to javascript code conversion question

2009-08-11 Thread costa
I have two modules, module 1 & module 2 with module 2 inheriting module 1. When the code in module 2 gets converted to JavaScript, is gwt converting only the classes in module 1 used by module 2 or does it convert everything in module 1? I have this common module that contains code used in sever

Re: How to send data to client in a regular interval?

2009-06-01 Thread Matías Costa
Further reading: http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ 2009/6/1 Matías Costa : > Mail fail. > > Oops, very wrong post. My brain got a shortcircuit and I was thinking > this was for the django list. > > Sorry. > > Almost everything

Re: How to send data to client in a regular interval?

2009-06-01 Thread Matías Costa
Mail fail. Oops, very wrong post. My brain got a shortcircuit and I was thinking this was for the django list. Sorry. Almost everything apply to GWT except the jquery and djangosnippets statements. For coment exists various solutions with 3rd party modules. 2009/6/1 Matías Costa : > I

Re: How to send data to client in a regular interval?

2009-06-01 Thread Matías Costa
On Mon, Jun 1, 2009 at 10:59 AM, Suren wrote: > but I want to confirm is there any other ways of doing > it. So at the end, its not possible..hmm. > > So now what I am trying to do is,  Storing the keycolumns of the rows > initially sent to client in an array, and I am initiating the request > fr

Re: How to send data to client in a regular interval?

2009-06-01 Thread Matías Costa
On Mon, Jun 1, 2009 at 9:47 AM, Suren wrote: > > Hi all, > > Is it possible to send the updated data from DB to the client in a > periodic interval and without any request or call from the client? No, it is not posible. --~--~-~--~~~---~--~~ You received this mes

Re: GWT 1.6.4 on Linux amd64 architecture fails

2009-05-31 Thread Matías Costa
On Mon, Apr 27, 2009 at 7:51 PM, marco wrote: > > This seems a similar issue as with GWT 1.5.3, in that both seem to > require a 32bit JVM to run properly. The 32b JVM is needed for the hosted mode. In production we are using 64b pure server. --~--~-~--~~~---~--~

GWT1.6 and annotations

2009-05-06 Thread Matías Costa
Hello people. I am developing with 1.5/eclipse/cypal-plugin, with some custom annotations and all goes fine. But fails with gwt1.6 and the google plugin. Simple test case. In eclipse create a new gwt project, let's call it just 'g' Create annotation: package g.client; import java.lang.annotat

Re: RPC Performance/Response Problem

2009-03-26 Thread Matías Costa
On Thu, Mar 26, 2009 at 9:46 AM, -Lord-67 <-lord...@web.de> wrote: > > First of all: Hi to everyone! > > I'm new to GWT and just programming my first app. Since i've some > experience in Java it's not a big problem, but in this case i am stuck > and hopefully someone can help me. > > In my app i m

Re: Currency Formatting

2009-03-25 Thread Matías Costa
On Wed, Mar 25, 2009 at 12:28 PM, fatjack1...@googlemail.com < fatjack1...@googlemail.com> wrote: > > When you say the currency code, do I just type in something like > 'GB' (or equivilent) for the UK? British pounds = GBP Euro = EUR US Dollar = USD And so on... --~--~-~--~~

Re: GWT and charts

2009-03-23 Thread Matías Costa
2009/3/23 Matías Costa > On Mon, Mar 23, 2009 at 2:05 PM, JoeB wrote: > >> >> The Fusion Charts are very good-looking, but they require the Adobe >> Flash Player plugin. My customer may be using the app from within a >> secure network that doesn't have

Re: GWT and charts

2009-03-23 Thread Matías Costa
On Mon, Mar 23, 2009 at 2:05 PM, JoeB wrote: > > The Fusion Charts are very good-looking, but they require the Adobe > Flash Player plugin. My customer may be using the app from within a > secure network that doesn't have access out to the Internet, so this > could be a problem. It seems that a

Re: using of classes outside gwt's class list

2009-03-23 Thread Matías Costa
On Mon, Mar 23, 2009 at 4:10 PM, ytbryan wrote: > > thanks thomas. > > I wonder which method is better? thomas's or David's? > > I don't quite get how to "emulate" the java class... > > but if i simply put it at the server, it will slow down my system > greatly. eg. if i want to fetch the geocode

Re: GWT and charts

2009-03-23 Thread Matías Costa
On Mon, Mar 23, 2009 at 7:02 AM, robinson wrote: > > Hi there guys, > > I am developing a java based application and require a charting > utility. But when i started using google visualizations for this I > figured out that it has a dependency on internet. Is there any way for > me to get charts

Open Flash Charts and negative values

2009-03-23 Thread Matías Costa
Hello people. I am using ofcgwt for charting, and it looks like you can't pass the y_min parameter supported by ofc to get proper negative values rendering. ¿Any idea of how to get a negative range Y axis? Thanks --~--~-~--~~~---~--~~ You received this message be

Re: Plugin based gwt web application

2009-03-13 Thread Matías Costa
On Fri, Mar 13, 2009 at 4:31 PM, Andreas Karlsson wrote: > Therefor I don't think the dynamic addition of (at compile time > unknown) modules is doable with the current (or future) versions of > GWT. > Yeah, you are right. I've talking with a colleague about the idea, its posible, with restrict

Re: Plugin based gwt web application

2009-03-13 Thread Matías Costa
On Fri, Mar 13, 2009 at 6:39 AM, Vitali Lovich wrote: > The "obfuscated" code is just javascript which I explained to you how to > load. > I disagree because: * Obfuscated, optimized code mangles the functions and classes names. If this mangling, is not deterministic and constant between compil

Re: Plugin based gwt web application

2009-03-13 Thread Matías Costa
On Fri, Mar 13, 2009 at 12:00 PM, Andreas Karlsson wrote: > What I (plan) to do is to automatically recompile the whole > application when a client-plugin is added. > > So I keep a plugin registry on the server side and when I enable/add a > plugin I generate some glue files and recompile + redepl

Re: Help Please : How to add my own jar file in Gwt Module

2009-03-13 Thread Matías Costa
On Fri, Mar 13, 2009 at 8:08 AM, shashi wrote: > Loading inherited module 'com.span.gwt.client.widgets.events' > [ERROR] Unable to find 'com/span/gwt/client/widgets/ > events.gwt.xml' on your classpath; could be a typo, or maybe you > forgot to include a classpath entry for source? > > > Ple

Re: Plugin based gwt web application

2009-03-12 Thread Matías Costa
On Thu, Mar 12, 2009 at 5:40 PM, Rosh PR wrote: > One of the problems I'm facing over here is how will i compile a > small set of gwt code with out any EntryPoint and use the > generated *javascript* from the framework. I know we can compile > without the Entrypoint but the main problem I'm facin

Re: GWT 1.6 works on 64 bits?

2009-03-11 Thread Matías Costa
On Sun, Feb 15, 2009 at 3:24 PM, anderson...@gmail.com < anderson...@hotmail.com> wrote: > We all want to know, GWT 1.6 works on 64 bits? > I'm developing on gwt 1.5 with eclipse running on java 1.6 64bits, with the gwt projects configured to run on java 1.5 32bits. I can debug in hosted mode p

Re: use getDeclaredMethods() ??

2009-03-11 Thread Matías Costa
On Wed, Mar 11, 2009 at 10:38 AM, Josse wrote: > There is no way to get round this problem?? > Well, you have to create a generator that instrospect you classes in compile time. The simplest variation is to inspect your beans, and beanadapters generators are available on the net. This document w

Re: Email Validator

2009-03-11 Thread Matías Costa
On Wed, Mar 11, 2009 at 8:27 AM, raga p wrote: > can any inform me how to implement validation controls for Email > Validator.. > or attach the sample code for using it.. > http://groups.google.com/group/Google-Web-Toolkit/msg/579923157140e362 You're welcome --~--~-~--~~

Re: Synchornous GWT, how can i do that

2009-03-10 Thread Matías Costa
On Tue, Mar 10, 2009 at 6:01 PM, mikedshaffer wrote: > Lothar's original suggestion > > "Do the UI-update in a method called updateUI where you check if all > necessary data (e.g. above lists) are present and call this method > in every onSuccess-method of the different AsyncCallback-classes. " >

Re: working with % for gwt/gwtext widget(Panel) height

2009-02-19 Thread Matías Costa
I had to think twice to understand you want to set height in percentage. The size of any widget is affected by the layout is contained in. You can do setHeight("50%"), add to the parent container setLayout(new FitLayout()), or just use any of the many layouts available and use panel.add(widget, la

Re: Question: How can I get login user from Windows in GWT?

2009-02-13 Thread Matías Costa
Damien is 50% right. You can't get windows credentials from any internet user. But both IE and mozilla on windows support http auth negotiate. IE for same active directory hosts out of the box, and in both you can add exceptions. I know it, because I worked in a web single sign on project for a co

Re: save as dialog

2009-02-11 Thread Matías Costa
On Wed, Feb 11, 2009 at 4:53 PM, ytbryan wrote: > > Hi all, > > i already created a servlet that make a csv file frommy Resultset and > save it to a predetermined location. > > However, i would like the user to choose the location to be stored and > the name of the csv file. can someone advice me

Re: Custom Field Serialization

2009-02-10 Thread Vitor Costa
estions, ask again. > > John > > On Feb 3, 12:05 pm, Vitor Costa wrote: > > > Hi, > > > I would like to know if it is possible to control the serialization of > > some fields of an object, so that when it's being deserialized in the > > client (when it co

Custom Field Serialization

2009-02-03 Thread Vitor Costa
Hi, I would like to know if it is possible to control the serialization of some fields of an object, so that when it's being deserialized in the client (when it comes from the server) I can apply some transformations to that field, and also when it's being serialized in the client (when it is bei