CellList - getting getAbsoluteLeft/getAbsoluteTop for each Cell element (not parent)?

2011-01-20 Thread kellizer
Hi, I have a cellList and want to have a popup that when clicked pops up a popup panel over the cell - I can get the cellLists locations (e.g. cellList.getAbsoluteTop()) but how can I get the cells location? Many Thanks, Ian. -- You received this message because you are subscribed to the

GWT + Google Maps 1.1 Library Non-Map Uses

2011-01-20 Thread Alberto
Hi, I'm using Google Maps API to represent some paintings. I've just used MapType object to create a new Map with custom tiles, but Mercator Projection plot my picture continuously in longitude space, due to Mercator Projection. I need a way that let me see my picture only once, like in this

Re: Overlay types in cell widgets

2011-01-20 Thread Javier
Thanks for answering John, I use JsonRequest to get the data from the server and store it in a List. I'm pretty sure the data is modified in the cell table. In this code from my view I print the data before and after pushing it into de cell table: @UiField(provided = true)

Re: Widget Library

2011-01-20 Thread Thomas Lefort
Well it is mainly utility classes and common widgets that I want to reuse across several apps. Although there is already quite a lot of things already out there, it's never quite what I need. To be a bit more concrete, I will add some utilities for speeding up code development (annotation

Re: 2.1.1 RequestFactory: Persist method cannot be found

2011-01-20 Thread Thomas Broyer
On Wednesday, January 19, 2011 6:16:57 PM UTC+1, StefanR wrote: I try to use the locator pattern to separate Entities and Services. Unfortunately, the persist method cannot be mapped to my service implementation. Error message: 19.01.2011 18:09:54 com.abc.OrganizationRequest

Loading a GWT Module from a GWTModule

2011-01-20 Thread cruser
Hi All, I am trying to run a GWT Module from within a GWT Module. The idea is to have a base module with links or icons. When the user clicks a link or icon, the related module is loaded from the server and run. Does anybody know if this is possible? If so, some sample code would be great.

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

2011-01-20 Thread Victor Costa Santiago
I am trying to print a diagram done with the gwt-connectors (I use the gwt- connectors1.7.1) and when attempting to view or print the lines and connectors disappear ... I tried using css but the problem persists. At: code.google.com / p / gwt- connectors / has a practical example and error. I

Re: Editor + RequestFactory

2011-01-20 Thread Thomas Broyer
I guess your DateIntervalProxy is a ValueProxy? When editing a proxy, the RequestFactoryEditorDriver calls .edit() on each proxy it sees (which for ValueProxy-s have the effect of somehow creating a new object, hence the PERSIST, and not UPDATE, operation). But it looks like the

CellTable: Refresh at real-time causes CPU usage of 60%

2011-01-20 Thread remuera
Hi, in my web app I have to refresh a table of 6 columns and around 50 rows to refresh 4 times a second with new data. I'm using CellTable for that, since its performance is good, but when I do that, CPU usage is at about 60%! I know that rendering of the HTMl in the browser is expensive, but

Re: Why Roo generated Expenses app works despite not having any DataProvider in its CellTable ?

2011-01-20 Thread Thomas Broyer
You can just call setRowCount and setRowData on the CellTable. -- 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

Enter key captured by both popup and RichTextArea

2011-01-20 Thread . .
I am trying to write sort of custom suggestBox for RichTextArea, it works fine but i have a little problem on IE8: i have a popup with a listbox of suggestions in it, i can choose what word to insert by using arrow keys, but as i select which one to insert, on the RichTextArea i get the word i've

Re: Editor + RequestFactory

2011-01-20 Thread Bálint Kriván
I see, thanks! There was an error with this, but will check it again. On Thu, Jan 20, 2011 at 12:11 PM, Thomas Broyer t.bro...@gmail.com wrote: I guess your DateIntervalProxy is a ValueProxy? When editing a proxy, the RequestFactoryEditorDriver calls .edit() on each proxy it sees (which for

Scrollable DockLayoutPanel

2011-01-20 Thread joao
Hi, I have a DockLayoutPanel as the shell for my app. The ui.xml is like this: g:DockLayoutPanel unit='EM' g:north size='5' g:HTMLPanel styleName='{style.header}' div class={style.logoHeader}

Re: GWT Activities, Places with Event Bus ??????

2011-01-20 Thread ailinykh
Why do you need events? Each Activity is notified when it becomes active ( method start() is called). Just check the application state at this moment. If you want to share some data between several activities make this data singleton. Thank you, Andrey On Jan 19, 7:59 am, SergeZ

Re: GWT Activities, Places with Event Bus ??????

2011-01-20 Thread Ben Imp
Events allow you to synchronize two concurrently active presenters. If you never have more than one presenter active in your application at a given time, then this becomes less of an issue. -Ben On Jan 20, 8:01 am, ailinykh ailin...@gmail.com wrote: Why do you need events? Each Activity is

Re: Is there a way to avoid the colon(:) sign in a Place's prefix ???

2011-01-20 Thread Martin Ždila
Hello You can star the issue at http://code.google.com/p/google-web-toolkit/issues/detail?id=5899. Best regards -- Martin Ždila -- 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: RequestFactory does not preserve owned 1-to-many list order

2011-01-20 Thread QkQk
Hi Thomas, you are correct in list order. It's my mistake. For the second question, i have tried @Persistent(embeddedElement=true) on collection of embedded class,but does not work on appEngine sdk 1.4.0. Can you provide a working example? Is it possible to have embedded class or collection of

Problem with multiple activity mappers (or understanding)

2011-01-20 Thread Erik Bens
Hi everyone, I've got a little problem here with my first self-created gwt 2.1.1 app. I've got a menu on top which has its activity mapper (it's a bit like the context menu of Thomas in his app: https://github.com/ashtonthomas/beans) and another activity mapper responsible for my content. Now

Problem with refreshing UI xml

2011-01-20 Thread shpyo
Hello! I got one problem. When I put some cosmetic change to my ui, then build via maven i can't see any changes. Do you know why is that happening? My code: LoginIU.ui.xml !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder

Is it possible to pass parameters/data from Server to Client package?

2011-01-20 Thread Irene
Hi all, I am developing a GWT project that displays a user interface where it is possible to select some parameters and then connect to a remote geospatial (SOS) server in order to perform an operation. After receiving the response as an XML file, I parse the results to extract relevant data

Loading state of CellTable

2011-01-20 Thread varakumar
Hi, I am using CellTable in my application, In celltable it is showing loading image such a good image. But now I want remove it after some time, How can I remove that loading image. Thanks, Vara Kumar PJD -- You received this message because you are subscribed to the Google Groups

GWT Scroll Bar Issue

2011-01-20 Thread wajad abbasi
I am adding celltable widget in scrollPanel. I want to set its header to be fixed and data should be under Vertical scroll or is there any possibility to control the Horizontal scroll bar.. Please help me if anyone can. i m working it out from last month. -- You received this message because

Re: Problem with refreshing UI xml

2011-01-20 Thread David Chandler
Are you trying mvn gwt:run or mvn package (production compile)? If the latter, try mvn clean compile gwt:compile /dmc On Thu, Jan 20, 2011 at 3:44 AM, shpyo cichosz.pi...@gmail.com wrote: Hello! I got one problem. When I put some cosmetic change to my ui, then build via maven i can't see

Re: GWT Scroll Bar Issue

2011-01-20 Thread John LaBanca
It isn't possible with CellTable. I'm working no a variation of CellTable called DataGrid that will add this specific feature. Thanks, John LaBanca jlaba...@google.com On Thu, Jan 20, 2011 at 9:12 AM, wajad abbasi wajadabb...@gmail.com wrote: I am adding celltable widget in scrollPanel. I

Re: Loading state of CellTable

2011-01-20 Thread John LaBanca
It will be removed when you set data. If you don't have data, setting an empty data set should remove it as well. cellTable.setRowData(0, new ArrayList()); Thanks, John LaBanca jlaba...@google.com On Thu, Jan 20, 2011 at 8:32 AM, varakumar varakumar@gmail.com wrote: Hi, I am using

Re: CellList - getting getAbsoluteLeft/getAbsoluteTop for each Cell element (not parent)?

2011-01-20 Thread John LaBanca
Check out DatePickerCell#onKeyDown() to see how we position the DatePicker popup under the cell. Within the Cell event handler, get the absoluteTop/Left from the parent Element. Thanks, John LaBanca jlaba...@google.com On Thu, Jan 20, 2011 at 3:32 AM, kellizer kelli...@gmail.com wrote: Hi,

Re: CellTable: Refresh at real-time causes CPU usage of 60%

2011-01-20 Thread John LaBanca
You're refreshing 4x a second, what do you expect to happen? CellTable constructs a giant HTML string, which requires a lot of string manipulation and logical code that could take up the CPU. Since javascript is single threaded, the browser will be unresponsive while CellTable renders the code,

Re: GWT project layout question featuring git, maven and 100 developers

2011-01-20 Thread markM
You might want to read The Mythical Man Month for starters. On Jan 18, 11:39 am, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, we are currently on the way creating the project infrastructure for a larger GWT project. The specs are: - git - Maven (using gwt-maven-plugin) -

Re: .setHorizontalAlignment on a Textcolumn does not compile

2011-01-20 Thread John LaBanca
Are you using GWT 2.1 or GWT 2.1.1? Column.setHorizontalAlignment was introduced in GWT 2.1.1. Thanks, John LaBanca jlaba...@google.com On Wed, Jan 19, 2011 at 4:52 PM, frank t3devt...@googlemail.com wrote: Hello, I get the following complier-error in elipse with google plugin with the

Re: RequestFactory does not preserve owned 1-to-many list order

2011-01-20 Thread Thomas Broyer
On Thursday, January 20, 2011 3:42:13 PM UTC+1, QkQk wrote: Hi Thomas, you are correct in list order. It's my mistake. For the second question, i have tried @Persistent(embeddedElement=true) on collection of embedded class,but does not work on appEngine sdk 1.4.0. Can you provide a

Re: GWT Designer expecting the module as the name of the eclipse project?

2011-01-20 Thread Eric Clayberg
There is no requirement in GWT Designer that the module name share the same name as the project. That is typically never the case anyway. We have a large number of users successfully using GWT Designer with Maven projects, so here is no general issue there either. We would need to see an actual

Re: Is there a way to avoid the colon(:) sign in a Place's prefix ???

2011-01-20 Thread karthik . eleven
Thanks Martin for opening an issue. Also, please feel to share with us any code related to implementing your own PlaceHistoryMapper, Tokenizers , to circumvent this issue. This is an issue a lot of developers would eventually face . I would encourage developers to star this issue in the

Crawlable ajax, PlaceController and EventBus

2011-01-20 Thread sheamus
Hello, Has anyone an idea for implementing crawlable ajax with the #! fragment in the URL using PlaceController and EventBus? Each of my URL's end in something like: / wf.html#AdminEventsListPlace: But I don't know how to change this to /wf.html#!AdminEventsListPlace: for google's crawler.

Re: Crawlable ajax, PlaceController and EventBus

2011-01-20 Thread Sheamus O'Halloran
I just worked it out from this post http://groups.google.com/group/google-web-toolkit/browse_thread/thread/947e7ba3e6c6686a: @Prefix(!search) public static class Tokenizer implements PlaceTokenizerSearchPlace { } produces /wf.html#!search: -- You received this message because you are

BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-20 Thread Patrice De Saint Steban
Hello, I want to have the best practice to know how to use the Editor Framework with MVP. Where place all the code. For exemple if I want to do a build an Activity with edit an object, I will create first an Activity EditObjectActivity and a EditObjectView interface with the

Re: CellList - getting getAbsoluteLeft/getAbsoluteTop for each Cell element (not parent)?

2011-01-20 Thread kellizer
Worked a treat - that you very much John... -- 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

Never pass ResettableEventBus to ActivityManager

2011-01-20 Thread anozaki
Was working for ever last night trying to find my memory leak on my personal project. Answering some stackoverflow question, I figured out what my problem was. It ends up I was accidentally passing in ResettableEventBus into my ActivityManager. ResettableEventBus was holding onto every single

Re: BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-20 Thread Bálint Kriván
Hi! I was facing the same issue. I've found out this, but I'm open to any suggestion: I've put Driver in the Activity, because View should be responsible only for display (but using editor.flush() method is responsible for Model changes -- it should go to the Presenter layer (Activity in this

Out of stack space

2011-01-20 Thread mike b
gwt 2.1.0 winxp ie7 I was tracing a completely different StatusCodeException (500) because of server socket errors were are having. (see http://code.google.com/p/google-web-toolkit/issues/detail?id=4723 ) Then strangely, I got this error on the client side. Basically, I created an

DevMode performance with Chrome

2011-01-20 Thread Bryan Donnovan
When running in DevMode using FF 3.6 or IE8, performance is pretty good. By performance, I mean the time it takes to refresh the page containing the GWT app. When running in Chrome 8 or 9, reload takes much longer, uses more cpu, etc. I expect that this has something to do with the process per

Re: Out of stack space

2011-01-20 Thread Ben Imp
Sounds like classic infinite recursion to me. I can't see the code, but if your service call simply calls itself again on failure, and you don't track a failure count anywhere, I could see that spinning around infinitely and blowing up. -Ben On Jan 20, 1:24 pm, mike b mbaker.t...@gmail.com

Re: GWT project layout question featuring git, maven and 100 developers

2011-01-20 Thread mike b
think about compile times. We have 6 modules on our small project. Compile time for all code including jar, war, and ear files is 7 minutes on a fast quad core 4GB ram machine. IMO the more modules you have, the longer it takes. There might be a better way to optimize (yes, I'm using

FYHSIAO is out of the office.

2011-01-20 Thread fyhsiao
I will be out of the office starting 2011/01/21 and will not return until 2011/01/25. I will respond to your message when I return. --- TSMC PROPERTY This

Re: Out of stack space

2011-01-20 Thread mike b
yeah... total loser error on this one. Im so used to boiler plate code now that I didn't see my own error!!! -- 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

Attn::Unix Administrator Requirement in Framingham, MA::Please respond back at di...@abacuscs.com::

2011-01-20 Thread Dipin Sukumaran
Hi, Hope you are doing well. This is Dipin (di...@abacuscs.com ) from Abacus Management consultancy services. Please review my Urgent Client requirement below. ::Please respond back at di...@abacuscs.com:: Position: Unix Administrator . Location: Framingham, MA. Duration: 6-8 Months Hourly

Re: Attn::Unix Administrator Requirement in Framingham, MA::Please respond back at di...@abacuscs.com::

2011-01-20 Thread Jeff Chimene
Would a mod please unsubscribe this %$^# -- 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

Re: Attn::Unix Administrator Requirement in Framingham, MA::Please respond back at di...@abacuscs.com::

2011-01-20 Thread Anil Samuel
Could you please post these in another appropriate list ? this list is meant for GWT. On Fri, Jan 21, 2011 at 7:15 AM, Dipin Sukumaran dipin.j...@gmail.comwrote: Hi, Hope you are doing well. This is Dipin (di...@abacuscs.com ) from Abacus Management consultancy services. Please review my

Re: Why Roo generated Expenses app works despite not having any DataProvider in its CellTable ?

2011-01-20 Thread zixzigma
do you mean setRowCount and setRowData is the same as using AsyncDataProvider ? why is that ? -- 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

Re: DevMode performance with Chrome

2011-01-20 Thread Chris Conroy
It's a known issue. The NPAPI plugin has to cross an IPC boundary to get at the page, and we have to attach an expando onto every java object because Chrome's NPAPI implementation fails to preserve object identity. We're hoping the object identity bug will get fixed someday, but the IPC is

Re: Attn::Unix Administrator Requirement in Framingham, MA::Please respond back at di...@abacuscs.com::

2011-01-20 Thread Chris Conroy
The OP is now banned. We try to catch these before they get on the list, but sometimes a few slip through. If you notice someone flagrantly violating the list rules such as this spammer, please email the owners of the GWT

Re: Client en Server side validation

2011-01-20 Thread Jeroen Wolff
I've got 2 types of validation. Syntax and business rules. The syntax can be solved in the presenter, but i don't want to validate the whole bean if i only want to validate one property of that bean. I'm thinking to make it like this: Class Foo() { Date date; String otherfield; public

do you think RangeChange of CellTable should update the History Token ?

2011-01-20 Thread zixzigma
Lets say we are displaying data using CellTable. We also use SimplePager for paging. when we click next on SimplePager, the range changes, and table is updated with new data. it is all good. however we are still in the same place(history token remains the same). in your experience, do you

Re: Unable to load module entry point

2011-01-20 Thread Y2i
Does the app run in the hosted mode? Where do you deploy the app after it compiles? -- 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,

Re: GWT problem of reference external style

2011-01-20 Thread Y2i
It looks like on the page border-bottom-style: *none*; but in the style border-bottom-style: *dotted*; -- 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

Re: GWT Activities, Places with Event Bus ??????

2011-01-20 Thread ailinykh
That's right. But he is talking about synchronization between places (pages) . You have only one at the time. Andrey On Jan 20, 8:17 am, Ben Imp benlee...@gmail.com wrote: Events allow you to synchronize two concurrently active presenters. If you never have more than one presenter active in

Unable to set the text of a HTML element with a string, advice Please!!

2011-01-20 Thread AmaraSat
static HTML tml = null; String HeatParametersString = ; for (int i = 0; i Properties.length; i++) { HeatParametersString = HeatParametersString + Properties[i].getValue() + br; } tml.setHTML(HeatParametersString); Error thrown; java.lang.NullPointerException: null

Re: Is it possible to pass parameters/data from Server to Client package?

2011-01-20 Thread Y2i
It looks like you are trying to send request from a Client (C) to Server 1 (S1). S1 in turn sends request to Server 2 (S2) C - S1 - S2 When S1 receives a request from C, it needs to send another request to S2. When S1 gets results back from S2, all it needs to do is to return results back

Re: GWT Activities, Places with Event Bus ??????

2011-01-20 Thread Bálint Kriván
That's not quite right. You can have more Places, mapping them with different ActivityMappers. On Thu, Jan 20, 2011 at 10:36 PM, ailinykh ailin...@gmail.com wrote: That's right. But he is talking about synchronization between places (pages) . You have only one at the time. Andrey On Jan

Temporarily Disable AppEngine Security Manager?

2011-01-20 Thread Allen Holub
I'm in the process of moving an existing GWt application that uses SQL on the back end over to the AppEngine, and want to do that incrementally. I've found, however, that when I move the source code into an App-Engine project, the system replaces the SecurityManager with one that disallows file

Re: do you think RangeChange of CellTable should update the History Token ?

2011-01-20 Thread Y2i
Personally I store all configuration related to one place/activity on the server. -- 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,

Layout problem!

2011-01-20 Thread Vamshidhar Reddy Chitti
Hi, I am trying to build a application which contains header at the top, and navigation at left and at center for loading any application. For this requirement I have used DockPanel, for center I have used Frame widget. But I am unable to resize frame so that it covers south,east regions. Is

Re: Unable to set the text of a HTML element with a string, advice Please!!

2011-01-20 Thread Ben Imp
You never seem to actually set the 'tml' variable to anything besides null, so I'm guessing that's your issue. -Ben On Jan 20, 3:45 pm, AmaraSat amara.forthewo...@gmail.com wrote: static HTML tml = null; String HeatParametersString = ; for (int i = 0; i Properties.length; i++) {        

Re: do you think RangeChange of CellTable should update the History Token ?

2011-01-20 Thread John LaBanca
I think it depends on the nature of the data. If the data is highly dynamic, then forwarding somebody to a specific page isn't going to have much value because the data on the page is likely to change. However, if the data is relatively stable, then forwarding the user to a specific page might

Re: Why Roo generated Expenses app works despite not having any DataProvider in its CellTable ?

2011-01-20 Thread John LaBanca
You can manually set data in CellTable by calling CellTable#setRowCount/setRowData(). You can listen for RangeChangeEvents using CellTable#addRangeChangeHandler(). ListDataProvider and AsyncDataProvider are convenience classes that handle hookup with the table and ensure that only data in range

Re: Layout problem!

2011-01-20 Thread John LaBanca
Try using DockLayoutPanel instead, and make sure you attach it to the RootLayoutPanel instead of the RootPanel. DockLayoutPanel dock = new DockLayoutPanel(Unit.EM); dock.addNorth(myHeader, 5) dock.addWest(new ScrollPanel(myNav), 20); dock.add(myCenterThing); RootLayoutPanel.get().add(dock);

Re: about gwt listbox

2011-01-20 Thread Thad
It's been awhile, but I finally had a chance to look at this. Yes, Thomas, the problem is in DOMImplSafari's implementation of selectGetOptions(). For my workaround, when I need an OPTGROUP, I use code I linked to earlier. However, use the ListBox, I have to make some changes in

Re: Unable to set the text of a HTML element with a string, advice Please!!

2011-01-20 Thread AmaraSat
Perfect Thanks a lot. You were true. static HTML tml = new HTML(); tml.setHTML(HeatParametersString); is working, but its still weird it shows a warning that tml might not be intialized, thats the reason why i set it to null in the first place. But thanks its working now but with a warning :-)

Re: Temporarily Disable AppEngine Security Manager?

2011-01-20 Thread Jeff Chimene
On 01/20/2011 02:54 PM, Allen Holub wrote: snip So, does anybody know an easy way to disable the custom SecurityManager temporarily, short of a kluge, like writing one of my own and replacing the one in the default jar? Maybe write a stub and link it in via Gin? -- You received this message

Re: Temporarily Disable AppEngine Security Manager?

2011-01-20 Thread Jeff Chimene
On 01/20/2011 03:56 PM, Jeff Chimene wrote: On 01/20/2011 02:54 PM, Allen Holub wrote: snip So, does anybody know an easy way to disable the custom SecurityManager temporarily, short of a kluge, like writing one of my own and replacing the one in the default jar? Maybe write a stub and

Re: Attn::Unix Administrator Requirement in Framingham, MA::Please respond back at di...@abacuscs.com::

2011-01-20 Thread Ian Bambury
@ di...@abacuscs.com Get stuffed @ google-web-toolkit@googlegroups.com Admin Is this really appropriate for this list? On 20 January 2011 20:15, Dipin Sukumaran dipin.j...@gmail.com wrote: Hi, Hope you are doing well. This is Dipin (di...@abacuscs.com ) from Abacus Management consultancy

Re: Overlay types in cell widgets

2011-01-20 Thread Javier
I have checked that the issue happens when you add a custom column to the table. For instance: // Create name column. ColumnContact, String nameColumn = new ColumnContact, String(new EditTextCell()) { public String getValue(Contact object) { return

Re: Sample Application RPC Problems with Tomcat

2011-01-20 Thread Bill Morrison
Apparently the requests weren't getting to Tomcat. If I accessed the site through the Tomcat port (http connector) then it would work correctly. Now, the follow-up question would be is there a way to either specify the port in the client code somewhere or have apache forward the request to Tomcat

Re: do you think RangeChange of CellTable should update the History Token ?

2011-01-20 Thread zixzigma
could you please explain what is the criteria for data to be highly dynamic ? and in case of GWT, the entire app is one page, and we have the concept of places. and we don't have to forward to a new place, we can have a place that also support paging. for example, employees/p1 employee/p2 p1,

Re: do you think RangeChange of CellTable should update the History Token ?

2011-01-20 Thread zixzigma
Hello Y2i, what kind of configuration are you talking about ? could you please be a bit more specific ? Thank You On Jan 20, 1:57 pm, Y2i yur...@gmail.com wrote: Personally I store all configuration related to one place/activity on the server. -- You received this message because you are

Re: Why Roo generated Expenses app works despite not having any DataProvider in its CellTable ?

2011-01-20 Thread zixzigma
Thank You, I understand the fact that we can use setRowCount, setRowData and addRangeChangeHandler. I also read in the documentation that AsyncDataProvider and ListDataProvider are convinience classes what I do Not understand, is when should we use one over the other. In other words, when should

Develop a customized grid/celll table

2011-01-20 Thread Anoop John
Hi, I want to develop a cell table exactly same as in the link below. http://jaffa.sourceforge.net/JaffaRIATests/tests/extjs/multigroup/MultiGroup.html Is there any way for this. This is very urgent. Thanks Anoop -- You received this message because you are subscribed to the Google Groups

gwtp puzzlebazar problems

2011-01-20 Thread Armishev, Sergey
Just started to evaluate GWTP library to be used in our project but have problems to run successfully PuzzleBazar app and need some help. I checked out both projects gwtp-platform and PuzzleBazar as recommended in and configured my Eclipse project according to

Re: gwtp puzzlebazar problems

2011-01-20 Thread Christian Goudreau
I think the project needs a little update for GAE 1.4 and GWT 2.1 and also Gwtp. You could take a look at hive project to evaluate GWTP. It's a work in progress that will be a complete sample for the Gwtp community. Cheers, On Thu, Jan 20, 2011 at 8:13 PM, Armishev, Sergey

Re: gwtp puzzlebazar problems

2011-01-20 Thread Christian Goudreau
Hive project: http://code.google.com/p/arcbees-hive/ On Thu, Jan 20, 2011 at 8:29 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: I think the project needs a little update for GAE 1.4 and GWT 2.1 and also Gwtp. You could take a look at hive project to evaluate GWTP. It's a work

Re: in process remote service for testing purposes

2011-01-20 Thread jeremy rose
After pausing and thinking for a few moments I realized this was a very stupid question. But just in case anyone else gets lost from not seeing the forest through the trees here is my in-process service for testing purposes. import com.google.gwt.user.client.rpc.AsyncCallback; import

does GWT RegExp support x(?=y)

2011-01-20 Thread zixzigma
does GWT RegExp support x(?=y) Matching 'x' only if 'x' is followed by 'y'. -- 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

Re: Attn::Unix Administrator Requirement in Framingham, MA::Please respond back at di...@abacuscs.com::

2011-01-20 Thread karthik . eleven
Doesn't Report abuse automatically take care of such spam ?? -- 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

Re: Develop a customized grid/celll table

2011-01-20 Thread John LaBanca
Expandable rows and scrollable data area aren't supported in CellTable yet. I'm working on those features for GWT 2.3. You can try using a regular HTMLTable, but you'll have to write a lot of your own logic to handle expandable rows. Maybe another user can recommend a third party GWT library

How to show a message in CellTable?

2011-01-20 Thread varakumar
Hi all, I am using CellTable to show list of records. It is working fine, But when there is no records I want show a message as 'no records to show' by removing the loading image. Please suggest me. Thanks, Vara Kumar PJD -- You received this message because you are subscribed to the

Re: does GWT RegExp support x(?=y)

2011-01-20 Thread Jim Douglas
Wouldn't it be quicker to just write a test program and find out for yourself? Or read the javadoc and see that the GWT class is just a thin wrapper around the native JavaScript regexp facility, so it does whatever JavaScript does?

How to insert an Image in Celltable cell?

2011-01-20 Thread varakumar
Hi all, In CellTable cell How can I insert an imageresouce -- 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

Re: does GWT RegExp support x(?=y)

2011-01-20 Thread zixzigma
I did try it myself but was not getting the correct answer (it didnt match the pattern). I suspected GWT RegExp being a thin wrapper, but was not sure, and you never know. I didn't try it in JavaScript because again, GWT bridges the world of Java and JavaScript, as a result one cannot be certain

When is 2.2 M1 going to be released?

2011-01-20 Thread Lisa D
Does anyone know when 2.2 M1 will be release and does anyone know of a link to the GWT roadmap Lisa -- 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

[gwt-contrib] Re: Adding a new widget ResizeLayoutPanel that can trigger a resize event when it changes size. The ... (issue1301801)

2011-01-20 Thread pdr
http://gwt-code-reviews.appspot.com/1301801/diff/1/4 File user/src/com/google/gwt/user/client/ui/HeaderPanel.java (right): http://gwt-code-reviews.appspot.com/1301801/diff/1/4#newcode37 user/src/com/google/gwt/user/client/ui/HeaderPanel.java:37: Rendering bug: vertical scrollbars will be hidden

[gwt-contrib] Re: Adding a new widget ResizeLayoutPanel that can trigger a resize event when it changes size. The ... (issue1301801)

2011-01-20 Thread jlabanca
http://gwt-code-reviews.appspot.com/1301801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding a new widget ResizeLayoutPanel that can trigger a resize event when it changes size. The ... (issue1301801)

2011-01-20 Thread jlabanca
http://gwt-code-reviews.appspot.com/1301801/diff/1/4 File user/src/com/google/gwt/user/client/ui/HeaderPanel.java (right): http://gwt-code-reviews.appspot.com/1301801/diff/1/4#newcode135 user/src/com/google/gwt/user/client/ui/HeaderPanel.java:135: public IteratorWidget iterator() { All Panels

[gwt-contrib] Re: Adding a new widget ResizeLayoutPanel that can trigger a resize event when it changes size. The ... (issue1301801)

2011-01-20 Thread pdr
LGTM http://gwt-code-reviews.appspot.com/1301801/diff/5001/6001 File user/src/com/google/gwt/user/ResizeLayoutPanel.gwt.xml (right): http://gwt-code-reviews.appspot.com/1301801/diff/5001/6001#newcode23 user/src/com/google/gwt/user/ResizeLayoutPanel.gwt.xml:23: !-- Most browsers do not support

[gwt-contrib] Re: Adding a new widget ResizeLayoutPanel that can trigger a resize event when it changes size. The ... (issue1301801)

2011-01-20 Thread jlabanca
http://gwt-code-reviews.appspot.com/1301801/diff/5001/6001 File user/src/com/google/gwt/user/ResizeLayoutPanel.gwt.xml (right): http://gwt-code-reviews.appspot.com/1301801/diff/5001/6001#newcode23 user/src/com/google/gwt/user/ResizeLayoutPanel.gwt.xml:23: !-- Most browsers do not support

[gwt-contrib] [google-web-toolkit] r9575 committed - Implement an isDirty() method for Editor framework drivers....

2011-01-20 Thread codesite-noreply
Revision: 9575 Author: gwt.mirror...@gmail.com Date: Thu Jan 20 09:22:57 2011 Log: Implement an isDirty() method for Editor framework drivers. Issue 5881. Patch by: bobv Review by: rjrjr Review at http://gwt-code-reviews.appspot.com/1306801

[gwt-contrib] [google-web-toolkit] r9576 committed - Adding a new widget ResizeLayoutPanel that can trigger a resize event ...

2011-01-20 Thread codesite-noreply
Revision: 9576 Author: gwt.mirror...@gmail.com Date: Thu Jan 20 06:21:05 2011 Log: Adding a new widget ResizeLayoutPanel that can trigger a resize event when it changes size. The widget uses hidden scrollable divs to detect resize on non-IE browsers. This allow users to embed widgets that

[gwt-contrib] [google-web-toolkit] r9577 committed - Create javadoc directory for 2.2.

2011-01-20 Thread codesite-noreply
Revision: 9577 Author: j...@google.com Date: Thu Jan 20 10:34:11 2011 Log: Create javadoc directory for 2.2. http://code.google.com/p/google-web-toolkit/source/detail?r=9577 Added: /javadoc/2.2 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Remove list of JavaScriptException object properties when compiler.stackTrace = emulated (issue1310802)

2011-01-20 Thread Scott Blum
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix handling of null passed into varargs (issue1309801)

2011-01-20 Thread scottb
Ray: I want to follow up the previous commit with some little refactoring that a) makes the code more clear and b) will be useful for some other changes I'm working on. http://gwt-code-reviews.appspot.com/1309801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Optimize redundant 'switch' statements (issue1311801)

2011-01-20 Thread rice
Reviewers: scottb, Description: Optimize redundant 'switch' statements Fix bug caused by using short idents when matching case bodies Please review this at http://gwt-code-reviews.appspot.com/1311801/show Affected files: M dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java

[gwt-contrib] Re: Remove list of JavaScriptException object properties when compiler.stackTrace = emulated (issue1310802)

2011-01-20 Thread fredsa
http://gwt-code-reviews.appspot.com/1310802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >