Re: Abridged summary of google-web-toolkit@googlegroups.com - 56 Messages in 24 Topics

2012-01-16 Thread twiz1
-- 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-toolkit+unsubscr...@googlegroups.com. For more options, vis

Re: LayoutPanel and Custom Widget

2012-01-16 Thread Cristian Rinaldi
Hello: The real question is: I have a widget to inherits of ComplexWidget with the following declarations: private Element root = Document.get().createDivElement(); private LayoutPanel header = new LayoutPanel(); private Image imgUp = new Image(getDefaultResources().imageUp()); header.add(label)

Editor flush() not saving data

2012-01-16 Thread jmbz84
I have an simple editor, it works because it shows the data from the DB. But when I try to save nothing happens no error but also no saved data. I see the editordriver before flushing and it has the modified data. What is missing or wrong, Please Help, thank you. Here is my code. public class A

Re: GWT 2.1 IE 9 Support

2012-01-16 Thread shakilsiraj
We have done that in the past with no issue what so ever in our project (which is fairly large with 6 GWT modules). That meta tag only forces IE to use version 8 rendering engine which GWT 2.1 supports. Our project also uses GXT which had no issues as well. But we did notice better performance and

GWT randomly not rereshing the Hibernate POJo's

2012-01-16 Thread Hanumantha Rao Mallela
Hi We developed a GWT project with image lists and general controls. After updating the details of a current record, system saving the correct details in the database but displaying previous details in the client UI.This issue is happerning randomly. Please suggest the possible solution. Thank yo

Re: Hyperlink with PlaceHistoryMapper

2012-01-16 Thread Cristian Rinaldi
Thanks Thomas. Of course you're right with the theme of myStop, thanks for the clarification. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/1/16 Thomas Broyer > > > On Mon

Re: How to change url with #token when handleCurrentHistory() calls

2012-01-16 Thread Thomas Broyer
Er, don't? I mean, is that really a "bug"? (as far as GWT is concerned, it's not, it's by design) handleCurrentHistory "updates" your *app* with the place corresponding to the *current* history token (which might not exist, it's then the "default place" you given when initializing the PlaceHist

Re: MVP in terms of UI and View

2012-01-16 Thread Thomas Broyer
On Monday, January 16, 2012 8:44:22 AM UTC+1, Qrunk wrote: > > What does the following mean ?? > > GOALS in GWT Develeopment > > > We need dumb Views, not dumb UIs > (What does View mean here and whats UI in MVP ?? its confusing, , please > explain with a small example, a simple one) > A "dum

Re: question on PlaceChangeEvent

2012-01-16 Thread Thomas Broyer
You should either: - clear the form once you saved (so you're implicitly already back in the "start new order" state) - make a NewOrderPlace compare different to every other NewOrderPlace instance (default behavior when you don't override equals()); and of course do not use a sin

Re: Hyperlink with PlaceHistoryMapper

2012-01-16 Thread Thomas Broyer
On Monday, January 16, 2012 3:10:33 PM UTC+1, Cristian Rinaldi wrote: > > Thanks thomas!!! > But as an internal navigation menu, I think it is best to use Hyperlink. > Let me disagree. The only (the one and only) difference is that with Hyperlink you update the history token and let the Place

Re: How to inspect GWT generated javascript in Internet Explorer?

2012-01-16 Thread Thomas Broyer
On Monday, January 16, 2012 8:46:31 AM UTC+1, karim33 wrote: > > Hi Mariyan > > Tools to inspect javascript code in IE are difficult to find. > Er, starting with IE8, simply hit F12. For IE6 and IE7 (but who really cares?), Microsoft provides the "IE Developer Toolbar" add-on. > -- You recei

Re: Doubts in implementing MVP

2012-01-16 Thread Thomas Broyer
On Monday, January 16, 2012 4:05:01 AM UTC+1, Qrunk wrote: > > Hi Thomas, > > As you asked, I went through the link( > http://www.google.com/events/io/2010/sessions/gwt-continuous-build-testing.html > ) > but there it was a bit difficult for me to understand the basic reason as > to *why* > > 1

Re: CellTable height shrinks upon paging

2012-01-16 Thread Raziel
I don't think performance is the main reason, but the fact that the current way the loading indicator works by taking the place of the current data until more data is loaded. However, when there's no indicator I think it should be (theoretically) possible to skip that "state", leave the data there

How to change url with #token when handleCurrentHistory() calls

2012-01-16 Thread John99
Hello. When my gwt module starts the url doesn't change with start token when historyHandler.handleCurrentHistory() calls. How to fix it? -- 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-toolk

gwt with a NCBO bioportal javascript widget

2012-01-16 Thread Mari Carmen
Hi, I built the UI of my gwt app through java code, but now I want to add an NCBO widget in order to use the bioportal services. The usual way to add this component (as it is explained on http://www.bioontology.org/wiki/index.php/NCBO_Widgets#Term-selection_field_on_a_form) would be: Store the for

GWT Timer doesn't work

2012-01-16 Thread Hanna Varakhobava
Hello everyone! I have a long operation and a progress bar that should be updated every second. Long operation is an RPC, that retrieve a collection with some information. I call another RPC to know the progress of my operation. I have Timer subclass, where in void run() I get a progress. I do the

Re: AssertionError running in dev mode with -noserver in Tomcat

2012-01-16 Thread Cliff D
I've removed the offending rooted file from the jar file and it works now. 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, s

Re: AssertionError running in dev mode with -noserver in Tomcat

2012-01-16 Thread Cliff D
I put a breakpoint on AssertionError's constructor. PathPrefixSet.assertValidAbstractResourcePathName:292 has a name of "/ hibernate-distribution-3.5.5-Final.pom" ... ZipFileClassPathEntry.computeApplicableResources:188 has ZipFileResource r of "jar:file:/c:/d/.../hibernate3.jar!//hibernate- dist

DataGrid, Inline editing with RequestFactory and AsyncDataProvider

2012-01-16 Thread Ido
Hi, We are using DataGrid with inline editing handled by RequestFactory. We are looking for a way to nicely update the table after object was successfully updated (on failure we just clearViewData() the cell) In plain English, how can we replace single object in the DataProvider (async) without

Re: MVP in terms of UI and View

2012-01-16 Thread Drew Spencer
I think you'll find help on the Dumb Views thing here: http://code.google.com/webtoolkit/articles/mvp-architecture-2.html although I don't really understand it fully myself yet. It seems to be further splitting the view into two parts to avoid the view getting too 'smart'. -- You received thi

Making an RPC call from a CellTable ButtonCell in a view (MVP pattern)

2012-01-16 Thread Drew Spencer
Hi coders, I've been working on an app that uses the blobstore to save files and then serve them to users. They are shown in a CellTable by creating it and all of its columns in the view (Filename | DownloadButton | DateUploaded | DeleteButton) and then dropping it into a panel after constructi

LayoutPanel and Custom Widget

2012-01-16 Thread Cristian Rinaldi
I am the following doubt: I made a custom widget that use a LayoutPanel as container of elements: private Element root = Document.get().createDivElement(); private LayoutPanel layoutBody = new LayoutPanel(); private VerticalPanel body = new VerticalPanel(); public MenuAccordi

Making RPC calls from a CellTable ButtonCell using MVP pattern

2012-01-16 Thread Drew Spencer
Hi coders, I've been working on an that uses to blobstore to save files and then serve them to users. in a CellTable by creating it and all of its columns in the view (Filename | DownloadButton | DateUploaded | DeleteButton) and then dropping it into a panel after construction.

Expand and reduce the TreeItem , on the selection of Other TreeItem in GWT

2012-01-16 Thread learning coding
hi i am learning GWT I have tree Widget.TreeItems are added at runtime. example: 1.A 2.B when i click on A It looks like 1.A 1.ab 2.cd 2.B When I click on B It looks like 1.A 1.ab 2.ad 2.B. 1.bz 2.by I want is like, when

Re: retrieving own posts

2012-01-16 Thread Jim Douglas
http://groups.google.com/groups/profile?enc_user=HBBYexwNPAYKsBQgjkf-svRHsKhAU6o4CAjmAvjn6WiMe0udMQ On Jan 16, 7:20 am, Magnus wrote: > Hi, > > I would like to retrieve the answers of my own posts. Can I lookup my own > threads somehow? Searching for my name/address in full text does not seem

Re: GWT CellTable distorts when window is minimized or maximized...

2012-01-16 Thread Drew Spencer
Stop using IE7? Stop using IE8 and 9 too, but first of all stop using IE7. -- 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.google.com/d/msg/google-web-toolkit/-/QLo-u1RDR2sJ. To post

Re: Distinct modules, almost same package fail :-(

2012-01-16 Thread Paul Robinson
Define a module com.package.root.app.shared that contains the shared folder, and then have other modules inherit it using Paul On 16/01/12 06:11, n3k0 wrote: I recently joined this group, the reason is the following question. I have a Gwt app, and i have to share classes between modules, i m

question on PlaceChangeEvent

2012-01-16 Thread sri
Hello, We have a situation where, making a Menu selection( say startOrder ) takes us to a OrderPlace and fires a placeChangeEvent. When this happens, the activity associated with this place is started and the user can enter a New order and save etc. But once I'm in the OrderPlace and I have saved m

Re: Activity Feed widget

2012-01-16 Thread Ido
We use CellList with scroll events to fetch old data and a timer to get new one. In addition, we about to implement push data instead of timer. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit http

retrieving own posts

2012-01-16 Thread Magnus
Hi, I would like to retrieve the answers of my own posts. Can I lookup my own threads somehow? Searching for my name/address in full text does not seem to be reliable. Thanks Magnus -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To vi

CellList sort order

2012-01-16 Thread Magnus
Hi, can I influence the sort order of a CellList or do I have to provide data which is already sorted? Thanks Magnus -- 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.google.com/d/m

Re: Hyperlink with PlaceHistoryMapper

2012-01-16 Thread Cristian Rinaldi
Thanks thomas!!! But as an internal navigation menu, I think it is best to use Hyperlink. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/1/14 Thomas Broyer > If I were you, I

Distinct modules, almost same package fail :-(

2012-01-16 Thread n3k0
I recently joined this group, the reason is the following question. I have a Gwt app, and i have to share classes between modules, i mean, just one "shared" folder in all of the modules. I had the idea to put all the gwt xml config files in one folder, and change de "client" package declaration t

GWT Plugin installation problems.

2012-01-16 Thread gana
Hi, I have tried every method possible for installing GWT for Eclipse 3.7 ( using the update site, using the install from archive, installing on top of a clean Eclipse install, installing on top of FDT 5 ). It either doesn't go ahead after the accept licence page or gives me an error at the depend

GWT 2.1 IE 9 Support

2012-01-16 Thread shahid
I am using GWT 2.1 and have discovered that in IE9 the project doesn't work and you see a blank page. After looking up the issue it seems that it is to do with GWT support for IE9 which was (I assume) introduced in GWT2.3 and later. Now I have discovered that I can tell IE to behave like IE8 by put

GWT CellTable distorts when window is minimized or maximized...

2012-01-16 Thread Vibhas Zanpure
Hi, When I minimize my IE7 window and maximize it again, the GWT 2.4 CellTable headers and rows get distorted... Any way I can fix this issue ? Thanks in advance... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, se

Re: How to handel Day Light Saving in GWT2.0

2012-01-16 Thread Paul Robinson
You can use (new Date().getTimezoneOffset()) on the client to get its timezone offset, and send that to the server. Also, note that you can use DateTimeFormat.format(Date, TimeZone) to format a date to a particular timezone on the client. Paul On 16/01/12 08:32, dwitikrushna pattanaik wrote:

Re: Module inheritance problem: Refused to display document because display forbidden by X-Frame-Options.

2012-01-16 Thread Alexander Orlov
Solution: I haven't initialized the RequestFactory *before calling* *getI18nFacet()*. -- 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.google.com/d/msg/google-web-toolkit/-/rrKJPiXE

Doubt in implementing Events

2012-01-16 Thread Qrunk
Hi , In http://www.google.com/events/io/2010/sessions/gwt-continuous-build-testing.html its said that we should use setListeners() instead of addListeners(), Im confused as in how are they both different, can anyone please explain that concept with the help of one simple example ?? Thanks in

Re: Module inheritance problem: Refused to display document because display forbidden by X-Frame-Options.

2012-01-16 Thread Alexander Orlov
...the *onMouduleLoad()* code is located in *dp.verp.manager.client.**Main*. -- 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.google.com/d/msg/google-web-toolkit/-/OWB0hlTC8xkJ. To po

Module inheritance problem: Refused to display document because display forbidden by X-Frame-Options.

2012-01-16 Thread Alexander Orlov
I have two modules Manager.gwt.xml which inherits Planer.gwt.xml but when I call the Manager module I get *Refused to display document because display forbidden by X-Frame-Options.* which is displayed in the Web Inspector console. Everything works fine when I omit the *get

Re: MVP in terms of UI and View

2012-01-16 Thread Ed
Here you find all your answers: http://martinfowler.com/eaaDev/PassiveScreen.html - Ed -- 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.google.com/d/msg/google-web-toolkit/-/e880Bi9z

Retrieving ui:field value from custom Widget

2012-01-16 Thread Gervais.b
Hello everyone. In our app, we have the requirement that each inputs would have a fixed Html ID. So we always write "anInput.getElement().setId("myId")", that's boring and we are used to forget it. So I have tried to write custom widgets where we can call "setId" from code or UiBinder. So that we

Re: How to handel Day Light Saving in GWT2.0

2012-01-16 Thread dwitikrushna pattanaik
to clarify it explicitly ... i was thinkng to send the offset from client side in request or session and compare the offset with Server side tiem zone.can you please tell me is GWT has any setting to handel it .Or I have to handel only it in server side. As you said .if I am not sending from js

Re: How to handel Day Light Saving in GWT2.0

2012-01-16 Thread dwitikrushna pattanaik
Thanks. How can i get the client's time zone in server side and comapre with my server located zone and do the need full conversation. On Sun, Jan 15, 2012 at 11:53 PM, Paul Robinson wrote: > Timezones are a pain in javascript because it just doesn't do them. If you > have a javascript Date o