Re: Custom cell in CellTable with TextCell and SelectionCell

2013-08-12 Thread Jochen Schnaidt
Hi everybody, my cell now reacts on changes. But this brings up new questions, first of all: How do I get my event from my custom cell to to my CellTable to trigger an FieldUpdater? Thanks a lot. Best regards Jochen -- You received this message because you are subscribed to the Google

Custom cell in CellTable with TextCell and SelectionCell

2013-08-09 Thread Jochen Schnaidt
Hi everybody, I am trying to implement a custom cell for my CellTable showing a TextCell or a SelectionCell. The decision is made by an enum value in my model. To add the cell to my table I made a custom column, source under the cell. The Last snippets shows how I add the cell to my table.

Re: Where to initialize an AsyncDataProvider?

2013-08-07 Thread Jochen Schnaidt
Hi, like I announced before here is the link to a working example's sources on github. https://github.com/JochenSchnaidt/AsyncDataProviderExample Best regards Jochen -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: Where to initialize an AsyncDataProvider?

2013-07-22 Thread Jochen Schnaidt
Hi, works perfect now. Thank you all very much. I am going to publish a simplified example soon and will share the link here. Best regards Jochen -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Where to initialize an AsyncDataProvider?

2013-07-19 Thread Jochen Schnaidt
Hi everybody, I have a short but painful question: Where is the right place to initialize my AsyncDataProvider? Story so far: In my Controller class I have my AsyncDataProvider as reference and the search method where I built the asynchronous callback and process my data, looks like this.

Re: Where to initialize an AsyncDataProvider?

2013-07-19 Thread Jochen Schnaidt
Hi all, thank you for your fast responds. My favorite way is to subclass my own provider and instantiate it in the constructor, like Jens wrote above. When I do it this way, how do I trigger a new search, besides onRangeChanged event? Thats the point I am worried about and the reason I didn't

Re: Design Decision RPC with AsyncDataProvider

2013-06-18 Thread Jochen Schnaidt
Hi, I now started to give my columns DataStoreNames, works much better for a couple of requirements. Thank you so much for helping me on this topic. Best regards Jochen -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Design Decision RPC with AsyncDataProvider

2013-06-14 Thread Jochen Schnaidt
Hi all, I need an advice about a design question of my application. I am searching for a best practise for the following setup. Project is about an application for maintaining huge amounts of data from a database. Therefore I implemented a ui with UIBinder and a CellTable, data is

Re: TabLayoutPanel get index of tab which added a special widget

2013-06-10 Thread Jochen Schnaidt
Hi Donald, works perfect. Thank you very much. Have a great day. Best regards Jochen -- 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 email to

TabLayoutPanel get index of tab which added a special widget

2013-06-07 Thread Jochen Schnaidt
Hi, I'm struggling getting the index of a tab in a TabLayoutPanel. I am working on legacy code so no big chance changing panel types and stuff. Code looks like this: TabLayoutPanel tabLayoutPanel = new TabLayoutPanel(); MyView myView = new MyView(); tabLayoutPanel.add(myView , Tab name);

Mix up of the JavaScript files in modules

2010-07-02 Thread Jochen Schnaidt
Hi everyone, I have a serious problem with my GWT project. I have two modules, each with client code, shared and server parts. One is called ‘administration’ and one ‘signup’. The module inherit each other because of some shared files (server classes of appengine) I call my JavaScript files via

Re: Design of a GWT project

2010-04-22 Thread Jochen Schnaidt
application for registration and start it again after registration is done. The other point is, that JSPs might be easier to handle than servlets for realizing the host page on the server. So use the JSP as your welcome file. Regards Jan Ehrhardt 2010/4/20 Jochen Schnaidt j.schna...@t-online.de

Design of a GWT project

2010-04-20 Thread Jochen Schnaidt
Hi all, I have a question about the design of a GWT project. I am working on an application for registration to events based on GWT and GAE. The application consists of three modules: administration (create, edit an event and reporting), signup (registration of guests) and a ‘desktop’ for the

Re: Design of a GWT project

2010-04-20 Thread Jochen Schnaidt
this correct, you'll get an extendable and modularized application, that loads modules if required. That happens all in the same host page, so no page reload. Regards Jan Ehrhardt 2010/4/20 Jochen Schnaidt j.schna...@t-online.de Hi all, I have a question about the design of a GWT

Re: Design of a GWT project

2010-04-20 Thread Jochen Schnaidt
    It makes the HTML including a script tag containing your configuration. A JSP might be fine too. 4. The html is called     It's loaded inside the browser. Regards Jan Ehrhardt 2010/4/20 Jochen Schnaidt j.schna...@t-online.de Okay, I don't understand how this should work... So, you mean

Serialization of lists

2010-04-13 Thread Jochen Schnaidt
Hi, I posted this already at the AppEngine forum but I think this is an interface problem so I post here as well. I’m building an application with GWT and GAE and have a problem saving data in the datastore. In my application I generate a list which consists of lists of strings, looks this way:

Re: Serialization of lists

2010-04-13 Thread Jochen Schnaidt
/browse_thread/threa...http://code.google.com/p/google-web-toolkit/issues/detail?id=4438 On Apr 13, 7:27 am, Jochen Schnaidt j.schna...@t-online.de wrote: Hi, I posted this already at the AppEngine forum but I think this is an interface problem so I post here as well. I’m building

Re: Using GlassPanel with DockLayoutPanel

2010-04-08 Thread Jochen Schnaidt
a method included for using a glasspanel around the popup/dialog.  I'm not sure about the incubator GlassPanel, things in there are experimental and not necessarily brought up to date with new GWT code. On Apr 7, 6:00 am, Jochen Schnaidt j.schna...@t-online.de wrote: Hi everybody, I have

Re: Using GlassPanel with DockLayoutPanel

2010-04-08 Thread Jochen Schnaidt
a method included for using a glasspanel around the popup/dialog.  I'm not sure about the incubator GlassPanel, things in there are experimental and not necessarily brought up to date with new GWT code. On Apr 7, 6:00 am, Jochen Schnaidt j.schna...@t-online.de wrote: Hi everybody, I have

Using GlassPanel with DockLayoutPanel

2010-04-07 Thread Jochen Schnaidt
Hi everybody, I have a question about the GlassPanel from the incubator. At the moment I have a layout this way … RootLayoutPanel myRootLayoutPanel = RootLayoutPanel.get(); // Initializing the DockLayoutPanel DockLayoutPanel myDockLayoutPanel = new DockLayoutPanel(Unit.PX); public void

Re: Coding dynamic parts with GWT

2010-03-24 Thread Jochen Schnaidt
Thanks a lot. I will try it this way. -- 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

Re: Coding dynamic parts with GWT

2010-03-24 Thread Jochen Schnaidt
Hi, I got it. The solution via List works. For the next with this problem, here is my solution: ListTextBox trackList = new ArrayListTextBox(); for (int i = 0; i number; i++) { TextBox track = new TextBox(); trackList.add(track); generateEventHeadPanel.add(track); } ... String text =

Re: Coding dynamic parts with GWT

2010-03-24 Thread Jochen Schnaidt
for number. Is it the case that cardinality can range from zero to (say) five? On Wed, Mar 24, 2010 at 8:13 AM, Jochen Schnaidt j.schna...@t-online.dewrote: Hi, I got it. The solution via List works. For the next with this problem, here is my solution: ListTextBox trackList = new

Coding dynamic parts with GWT

2010-03-23 Thread Jochen Schnaidt
Hi, I have a question about coding dynamic parts with GWT. I already searched for an answer, but didn’t find something which could help me. May be I have the wrong keywords? I don’t know… So, the problem: My concept is that my application reads a integer from a TextBox after the user wrote it in