Re: Help

2017-02-16 Thread natan clara
I usually work with google chrome and any other browse Em 16/02/2017 09:15, 114joan escreveu: I will like to know way is GWT not working in Google Chrom, and how can i resolve this problem. Can eny one Help Me? Thanks  --

Re: GST 2.8 Keyboard Handler Question

2017-02-01 Thread natan clara
I have addKeyDownHandler. Follows model i have used     this.addKeyDownHandler(new KeyDownHandler() {     public void onKeyDown(KeyDownEvent event) {     int teclado = event.getNativeEvent().getKeyCode();     in

Re: How to simulate a click for a GWT button using fireEvent

2017-01-27 Thread natan clara
I have use this. this.getComo().addKeyPressHandler(new KeyPressHandler() {     @Override     public void onKeyPress(KeyPressEvent event) {     int teclado = event.getNativeEvent().getKeyCode();     if ((teclado

Re: Update conversation by displaying new messages when they are sent

2016-09-20 Thread natan clara
Make a timer that fires every X seconds. Button refresh = new Button(); Time temporizador = new Timer() {     @Override     public void run() {     dispara();     } }; // 2 seconds temporizador.scheduleRepeating(2000);

Re: [gwt-contrib] GWT 2.8 RC1 Help with testing

2016-07-20 Thread natan clara
Hi,             We have interest in Linux / Chrome. Natan. Em 20/07/2016 09:31, Michael Joyner escreveu: (I'm cross posting this here from google-web-toolkit-contribut...@googlegroups.com as being highly relevant)

Re: “No source code is available for type”

2016-07-18 Thread natan clara
Don't exclude *.java. It's need compile in gwt. Em 18/07/2016 15:03, Thomas Broyer escreveu: Why are you excluding *.java files from your JAR? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving em

Re: “No source code is available for type”

2016-07-18 Thread natan clara
Hi,         You need to add the package in .gwt.xml file.         Sample.         natan. Em 18/07/2016 14:57, あああいいい escreveu: You need to add your project .xml inherit lib name . 2016年7月19日火曜日、zakaria amine

Re: How to sort a list of objects from the shared folder on server-side?

2016-05-19 Thread natan clara
There is something strictly gwt / js is easily possible. Being only be required to have "extends IsSerializable" Em 19/05/2016 12:39, Kirill Prazdnikov escreveu: Is it possible to move the compareTo-code to

Re: GWT can not run on Tomcat

2016-03-29 Thread natan clara
Hi,             Change facet for webdinamic. Choice run tomcat and change class directory to webContent/WEB-INF/classes. Natan. Em 29/03/2016 09:23, fenyoapa escreveu: I'm running gwt under tomcat in MyEclipse. Maybe you d

Re: Creation of Dynamic frontend screens for data entry

2016-03-15 Thread natan clara
You can dynamically assemble the query, using the metadata, however, I abandoned this procedure because of the work it takes. Currently I have an array object and through it I take and bring the Oracle tables information. Em 15/03/2016 13:32, Praveen Chakka esc

Re: Regarding RpcService,HybridServiceServlet and ClientOracle

2016-03-03 Thread natan clara
Hi Thomas,                                     As my English is bad, I do not know if I understand your problem, however, I use GWT from version 1.x and never had a problem with the relationship between and the oracle. Here's how to work: public class Cadast