When starting the gwt:run-codeserver some async classes wont be found

2013-11-06 Thread crojay78
Hi, I am trying to start the superdev mode but it does not work. I does not find the Async files. I am starting the with this command mvn gwt:run-codeserver -Dgwt=de.srs.pen.pdkonsole.HwrEditor [INFO] Compiling module de.srs.pen.pdkonsole.HwrEditor [INFO]Validating units: [INFO]

Problems with super dev mode: Can't find any GWT Modules on this page

2013-10-17 Thread crojay78
Hi, i followed a lot of threads at stackoverflow and here in this group concerning the super dev mode. But it still does not work on my side. I have a multi module maven gwt project and want to use super dev with it. Actually it works to start the codeserver with the mvn gwt:run-codeserver

Re: Problems with super dev mode: Can't find any GWT Modules on this page

2013-10-17 Thread crojay78
Thanks for the reply, Yes I added it my app.gwt.xml Am Donnerstag, 17. Oktober 2013 19:43:13 UTC+2 schrieb crojay78: Hi, i followed a lot of threads at stackoverflow and here in this group concerning the super dev mode. But it still does not work on my side. I have a multi module maven

Is Sortable-Pageable table from incubator state of the art?

2010-11-12 Thread crojay78
Hi, last time i needed a complex table in my app I found sortable table from the incubator project, I was doing this GWT-Project starting with 1.7 till 2.0.1. Now I'm going to my next GWT Project and I am curious if there is new stuff from 2.1 concerning tables so that I can use the new stuff

MVP Problem when implementing the presenter as singleton

2010-07-12 Thread crojay78
Hi, I have a problem with my mvp project. I do the binding in the constructor of each presenter, every presenter is implemented as a singleton. I do that because otherwise I discovered that the binding to the buttons, textboxes etc will be established each time I use the presenter and so i had

RPC method will be called multiple times instead of one time in development mode????

2010-07-07 Thread crojay78
Hi, I am observing a strange behaviour in the development mode of my application. I have a RPC call which will store my data in the background. But this method will be called 5 times on my server??? I dont get it why this happens, I checked if I make this call anywhere else in my code, it should

Good knowledge source for GWTEvent Handling?

2010-07-06 Thread crojay78
Hi, actually I trying to understand in detail the GWTEvent Handling, does anyone has good links to articles or something else helpful for that? I Thanks for your responses -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: SuggestBox question - is it possible to react on sub sequences of the words?

2010-07-06 Thread crojay78
to provide an own SuggestionOracle which searches a List with a search algorithm that is a s good as possible... - I did provide an own suggestion oracle for another occation and it works quite well... On Jul 2, 5:21 pm, crojay78 croja...@googlemail.com wrote: Hi, I am using the suggest box

SuggestBox question - is it possible to react on sub sequences of the words?

2010-07-02 Thread crojay78
Hi, I am using the suggest box in my app. Now I'm searching for the possibility to change the filter. Is it possible to change the behaviour so that not only words which start with the input will be suggested also words where the input occurs anywhere in the name. If I have a list like this Jim

How to show a load screen during rpc call?

2010-07-02 Thread crojay78
Hi, I need to load a few things from my server after a user gives input. Can somebody give an example how I can show a load screen as long as the rpc is not finished? I structured the app in mvp style ... any example would help me Best regards Thanks -- You received this message because you

Strange behaviour of development mode? After reload pages is empty

2010-05-07 Thread crojay78
Hi, I have a simple mvp style gwt app, after creating my first view I experienced a strange behaviour. After starting the development mode I could see my widgets at the page in the firefox, but as soon as I make a reload in the browser the widgets are gone and the page is empty. Only when I

Can anyone provide a step by step maven + gwt mvp tutorial?

2010-05-05 Thread crojay78
Hi, now that I have a bit experience with gwt in mvp style, I am looking for an example for using maven as build tool for gwt, I found a few posts here and on other sources but nothing made it really clear for me. I have to say that I am new to maven. I installed maven and also installed the

How do you show widgets on any place on the screen as you like?

2010-04-28 Thread crojay78
Hi, I am using the MVP approach in my current GWT project. In a few views it is necessary to show the user an confirmation dialog (for example do really want to delete yes/no) So now I do not know how to solve this in the best way. I created a Generic Widget for these cases, so that I can use it

How to repeat a function every X seconds??

2010-04-23 Thread crojay78
Hi, can somebody tell me if it is possible to start a certain function in the client repetitive? I want to store the configuration stuff of my GWT-Project every minute, so that I can restore it if the browser crashes or so Thanks a lot -- You received this message because you are

How to change style of a selected row in PagingScroll table?

2010-04-21 Thread crojay78
Hi, can somebody tell me how I can change the style of a selected row in a PagingScollTable?? I want to show the user which table row is actual selected, therefore I need to change the style of this row. Thanks for your help -- You received this message because you are subscribed to the Google

How to retrieve the current row in CellHighlightEvent?

2010-04-21 Thread crojay78
Hi, I discovered that there is an event for highlighting a row pagingScrollTable.getDataTable().addCellHighlightHandler(new CellHighlightHandler() { public void onCellHighlight(CellHighlightEvent event) { GWT.log(highlight);

Re: How to retrieve the current row in CellHighlightEvent?

2010-04-21 Thread crojay78
().getRowFormatter().setStyleName(rowIndex, bla); On 21 Apr., 10:35, crojay78 croja...@googlemail.com wrote: Hi, I discovered that there is an event for highlighting a row pagingScrollTable.getDataTable().addCellHighlightHandler(new CellHighlightHandler() {                         public void

How to add an image in a row of a PagingScrollTable

2010-04-19 Thread crojay78
Hi, I implemented a PagingScrollTable in my project (I found a very good example here http://zenoconsulting.wikidot.com/blog:17) but now I have a problem which I do not know how to solve. My table is working as expected, but I want to add a new column which contains an delete icon, so that I can

Problem with Radiobuttons

2010-04-12 Thread crojay78
Hi, I have a problem with radiobuttons, maybe I do not understand everything correctly because I don't see a solution. I have three rows of Radiobuttons (each row 2 radiobutton), each row is a group. Now I need to fire an event when something in these lines has changed. For example when in row 2

Re: PagingScrollTable running example please???

2010-03-30 Thread crojay78
()); /* cantidad de filas dinamicas */                 pagingScrollTable.redraw();         } } not implemented here: TableModel ( get data from the source ), tableDefinition ( how to display data) , I hope helped you ! saludos. On 29 mar, 11:07, crojay78 croja...@googlemail.com wrote: Hi

MVP and custom widgets

2010-03-30 Thread crojay78
Hi, I am using the MVP approach in my project and just created a new TableWidget which uses the PagingScrollTable. My TableWidgets is working as expected but only without communication to the presenter of tthe view. My problem is how can process clicks on the table of my CustomWidget in the

PagingScrollTable running example please???

2010-03-29 Thread crojay78
Hi, I am searching for a running example for PagingScrollTable from incubator project. Can somebody provide me something, for me its always easier to understand the stuff by playing a bit with the code. I found a maven example but I could import it to eclipse so that it works. Thanks a lot --

Re: GWT Incubator scrolltable

2010-03-29 Thread crojay78
Hi, i am also interested in the source code of this, it's easier to understand the stuff... Hopefully somebody provide it... Thanks On 21 Mrz., 21:31, Kwame iweg...@gmail.com wrote: Does anyone have the full source code for this paging scroll table

Re: JAXB compatibility with GWT 2.0, any news?

2010-03-19 Thread crojay78
wrote: On Mar 16, 3:11 pm, crojay78 croja...@googlemail.com wrote: Hi, I read a few posts that some people had problems with the integration of gwt with jaxb generated files. I want to use generated files from jaxb to use as shared objects in gwt. Is there anything new with gwt

JAXB compatibility with GWT 2.0, any news?

2010-03-16 Thread crojay78
Hi, I read a few posts that some people had problems with the integration of gwt with jaxb generated files. I want to use generated files from jaxb to use as shared objects in gwt. Is there anything new with gwt 2.0 ? Can I use it without problems or is there a good workaround how to get it

Re: Working Example of TabLayoutPanel with UIBinder?

2010-03-03 Thread crojay78
Hi, great now it works I updated to Version 2.0.3. Does anyone has a good example or tutorial for using TabLayoutpanel with uibinder. I do not know how i can fill the different tabs with content?? On 2 Mrz., 16:29, Paul Stockley pstockl...@gmail.com wrote: You need to make sure you are using

App works in ff and chrome but not in ie8

2010-02-09 Thread crojay78
Hi, my app is running in chrome and ff as expected but in ie8 nothing will be shown, my two div's will not be filled. I am using a flextable to show user lists and also I use a few times the setstylename method on the widgets. I read that a few people has also problems with flextable in ie8 but I

struts integration problem

2010-02-08 Thread crojay78
Hi, I was able to put my client code stuff of my gwt-app into my existing Struts 1.2.x . So far so good, but now I am stuck on the integration of my rpc-services into my struts app. I created a jar file of the server class files and put it into my struts app also i configured the servlet in the

Sample Application which shows how to use GWT inside a Struts 1.2 App

2010-02-05 Thread crojay78
Hi, does anyone has a sample application where I can see how to use GWT screens in a struts application? I was looking for this but without success. It would be nice if somebody can provide something or maybe has the mood to make such a sample app. I guess a lot of people would be greatful or at

CSS does not reload

2010-02-02 Thread crojay78
Hi, I have the problem that my changes on the CSS of my project will not be used in the development mode. It does not take the actual css which lies in the war folder. Does anybody know where the problem might be? Thanks -- You received this message because you are subscribed to the Google

Re: CSS does not reload

2010-02-02 Thread crojay78
loaded. See if it's a caching problem by hitting CTRL+F5 to force a full re- load of all the website's data. On Feb 2, 8:32 am, crojay78 croja...@googlemail.com wrote: Hi, I have the problem that my changes on the CSS of my project will not be used in the development mode. It does