On Fri, Dec 23, 2011 at 2:13 PM, <google-web-toolkit@googlegroups.com> wrote:
Group: http://groups.google.com/group/google-web-toolkit/topics
- firing httprequest multiple times [7 Updates]
- Code for Cache [2 Updates]
- CellTable CheckboxCell setTitle() [2 Updates]
- Caused by: java.lang.IllegalArgumentException: Cannot fetch unpersisted entity [1 Update]
- compiler.useSourceMap [2 Updates]
- Need Help Packaging a GWT Library Module into a JAR [2 Updates]
- beans validation other other then hibernate-validator for gwt? [3 Updates]
- Adsense with GWT [1 Update]
- GWT-RCharts Released (An interactive client side Charting Library with 3D CHARTS) [1 Update]
- Wait dialog on rpc interaction [3 Updates]
- App with hundreds of code splits won't finish compiling [3 Updates]
- Closure compiler integration [2 Updates]
- Remote Logging [3 Updates]
- How to get hold of the instance in an InstanceRequest [2 Updates]
- ListEditor with inheritance [4 Updates]
- HasCell interface and setFieldUpdater(FieldUpdater<T, C>) [1 Update]
- How to set a Presenter in a composite Widget? [1 Update]
- Help! com.google.gwt.user.client.rpc.StatusCodeException: 500 The call failed on the server; see server log for details [1 Update]
- GWT Developer Plugin for Firefox 9 [1 Update]
- IE 8 and status code error 12030 - 12152 Options IE 8 and status code error 12030 - 12152 Options IE 8 and status code error 12030 - 12152 Options [1 Update]
karun <karunkumar.s@gmail.com> Dec 22 03:04PM -0800
Hi
I have popup panel and it contains 1 hyper link, clicking on hyperlink
i am sending http post request to jsp / servlet in the handler
function of hyperlink.
the problem i am facing is ...more
Ed <post2edbras@gmail.com> Dec 22 04:10PM -0800
> how to over come step 2 behaviour and send only one http request
for every click.
Disable the widget during processing (which sinks/unsinks the click event).
Hyperlink doesn't have this ...more
Jens <jens.nehlmeier@gmail.com> Dec 22 05:26PM -0800
If you only click once but your code gets executed twice, then you have
added two ClickHandler accidently. Probably the method that contains
hyperlink.addClickHandler() gets called twice. ...more
karun <karunkumar.s@gmail.com> Dec 22 11:02PM -0800
Hi Jens,
i have veryfied your suggestion, the logging statement, which is there
in onResponseReceived() gets logged multiple times but the statement
in addClickHandler() gets logged only once.
...more
karun <karunkumar.s@gmail.com> Dec 23 04:37AM -0800
Hi Ed,
as per your suggestion, i replaced the hyperlink with button. i
disabled it in onclick() and enabled it in OnResponseReceived().
but still the problem persists.
one more thing
...more
Ed Bras <post2edbras@gmail.com> Dec 23 01:39PM +0100
Put some breakpoints and you find out where the double action behavior
comes from.
...more
karun <karunkumar.s@gmail.com> Dec 23 04:42AM -0800
Hi Ed,
as per your suggestion, i replaced the hyperlink with button. i
disabled it in onclick() and enabled it in OnResponseReceived().
but still the problem persists.
one more thing
...more
HARISH SAHARAN <harish.saharan@moruba.com> Dec 23 01:54AM -0800
can any one give me the source code for use :---
1. Ehcache with java1.6 and Hibernate3.0 and GWT2.0 and
2. Implement GZIP with gwt2.0 and java1.6 and
3 HTTP cache with java1.6 and gwt2.0
...more
Ed <post2edbras@gmail.com> Dec 23 04:37AM -0800
Your questions are difficult to understand: missing details.
2):
http://code.google.com/p/google-web-toolkit/wiki/PrecompressLinker
3):
# http://www.infoq.com/articles/gwt-high-ajax
# ...more
Vivek Dudani <vaxy.dude@gmail.com> Dec 23 04:02AM -0800
Hi,
I need to set tooltip for CheckboxCell which i'm adding in a
cellTable.
created a new CheckboxCell and then added it to CellTable header.
cannot find any setTitle or anything else. ...more
Ed <post2edbras@gmail.com> Dec 23 04:33AM -0800
Override the method CheckboxCell.render(..) and add the title attribute as
a string (see source of CheckboxCell).
CheckboxCell is part of the CellWidget family and don't extend from Widget, ...more
tzhotmail <mwakatobe@gmail.com> Dec 23 03:49AM -0800
Hi ,
The AbstractRequestFactory in the client throws this exception, method
public <P extends EntityProxy> Request<P> find(EntityProxyId<P>
proxyId) {
if (((SimpleEntityProxyId<P>) ...more
Taras Koval <ikovaltaras@gmail.com> Dec 22 09:29AM -0800
I read about compiler.*useSourceMap on google wiki page and added to my
module gwt.xml file *<set-property name="compiler.useSourceMaps" value=
"true"/> . But when I started compiling, compiler ...more
Ed <post2edbras@gmail.com> Dec 23 12:17AM -0800
Use this syntax:
<set-configuration-property name="compiler.useSourceMaps" value="true"/>
See doc for details
...more
"Cengiz Öner" <cengiz.oener@gmail.com> Dec 22 03:15PM -0800
I am trying to package a GWT library module into a JAR file and use
the library in a GWT web app. Java sources, class files, module
descriptor, and UiBinder XML files are all included in the JAR. ...more
Ed <post2edbras@gmail.com> Dec 23 12:00AM -0800
If you want help you need to include enough info like error message details.
...more
Elhanan <elh.maayan@gmail.com> Dec 22 11:10AM -0800
hi..
just wondering are there any other beans validation implementation aside
from hibernate-validator that could used with gwt?
...more
Patrick Julien <pjulien@gmail.com> Dec 22 12:31PM -0800
I use OpenJPA and I know it works, it's able to validate them.
...more
Elhanan Maayan <elh.maayan@gmail.com> Dec 23 06:45AM +0200
i mean a SEPARATE validation framework, if i use eclipseLINK for example
...more
Rahul <rahul.tongia@gmail.com> Dec 22 01:26PM -0800
I know this is an ongoing issue. Is there any progress on this? There
was the program of AdSensef for AJAX, but there is no update.
Please kindly provide some sort of timeline. I want to decide if ...more
Stefanos Antaris <ssantaris@gmail.com> Dec 23 12:22AM +0200
Hi to all,
i am facing a problem while developing a web application. I have some rpc
interactions with the server (appengine) and most of them are really time
consuming as i am having some data ...more
Dipti Sharma <sharmadipti86@gmail.com> Dec 22 04:32PM -0600
Disable the button on its click handler and enable it once the rpc call
returns.
...more
Ed <post2edbras@gmail.com> Dec 22 04:13PM -0800
See: rpcHyperlink<https://groups.google.com/forum/#!topic/google-web-toolkit/lm_1v7Mmb5M>
...more
Eric Andresen <ericandresen@gmail.com> Dec 22 07:04AM -0800
Granted, it is a pretty big project, it has about 800 activities, 150
EntityProxy types, 100 Request objects, and uses all the goodness of the
RequestFactory and UiBinder for all of it. ...more
Ed Bras <post2edbras@gmail.com> Dec 22 04:45PM +0100
> I guess I could move the splits to the package level
As you might have notices you have to choose your split points with care as
otherwise you shoot yourself in the foot.
Having more split points ...more
Alan Leung <acleung@google.com> Dec 22 11:17PM
> As you might have notices you have to choose your split points with care
> as otherwise you shoot yourself in the foot.
> Having more split points doesn't necessary means a "better" app.
...more
Paul Stockley <pstockley1@gmail.com> Dec 22 08:12AM -0800
I can see there is some work going on to integrate the closure compiler as
a back end to the GWT compiler. Apparently this can give a 20% code
reduction. I am curious why such a big decrease. ...more
Alan Leung <acleung@google.com> Dec 22 11:00PM
> Apparently this can give a 20% code reduction. I am curious why such a big
> decrease.
It varies.
> GWT and the closure compiler seem to do very similar optimizations
...more
Keith Bennett <keith.bennett@forthwind.com> Dec 22 09:44AM -0800
Ed, thanks for your reply! The log data is now being directed to my
logback files on the server, but I still have one remaining issue. I
noticed that all of the java.util.logging get additionally ...more
Ed Bras <post2edbras@gmail.com> Dec 22 08:10PM +0100
Google is your friend:
http://stackoverflow.com/questions/2533227/how-can-i-disable-the-default-console-handler-while-using-the-java-logging-api ...more
Keith Bennett <keith.bennett@forthwind.com> Dec 22 02:08PM -0800
Ed,
Thank you for the link. I tried searching for a solution myself, but
I guess I didn't enter the correct search terms. Regardless, after
tinkering with several of the solutions offered via ...more
Thomas Broyer <t.broyer@gmail.com> Dec 22 05:16AM -0800
I think you don't understand what InstanceRequest means vs. Request.
InstanceRequest means the method will be called on the domain object
corresponding to the proxy passed as argument (referenced ...more
Gregor Frey <g.k.frey@gmail.com> Dec 22 12:04PM -0800
Thank you. So there is no way to implement an instance method outside the domain class? But why woulnt I include all instance methods in the proxy definition then? I hoped I could add methods, that ...more
chris <chris.hinshaw@gmail.com> Dec 22 07:30AM -0800
There are a few posts asking about Editor's discussing inheritance
this but no responses as of yet. Please keep in mind that I have
search google.com/codesearch, GWT issue tracker and google groups ...more
Thomas Broyer <t.broyer@gmail.com> Dec 22 08:56AM -0800
First, have you seen
http://code.google.com/p/google-web-toolkit/issues/detail?id=6719 ?
In your case, I think you could do it quite easily by:
1. not having the TextArea as a sub-editor ...more
Stefan Ollinger <Stefan.Ollinger@gmx.de> Dec 22 08:31PM +0100
I submitted a post to the gwt contributors mailing list with a similar
issue:
https://groups.google.com/d/msg/google-web-toolkit-contributors/gUFkDIQ2TSE/Atjg5PZ6G4kJ
This is basically what is ...more
chris <chris.hinshaw@gmail.com> Dec 22 11:55AM -0800
Thomas,
Thank you for your quick response. I do have a semi working
solution that does support inheritance, still has some bugs that are
probably caused by my lack of generics in the ...more
Patrick Tucker <tuckerpmt@gmail.com> Dec 22 08:17AM -0800
Anyone know if there is a reason as to why HasCell does not have
setFieldUpdater(FieldUpdater<T, C>)?
I had to use Column in my Presenter Display to add a FieldUpdater
because this funciton is ...more
James Drinkard <jdrinkard4@gmail.com> Dec 22 08:03AM -0800
I'm still confused here. Maybe I didn't spell out things. I have
more details on this question here:
http://stackoverflow.com/questions/8580225/how-to-set-a-presenter-in-a-composite-widget-in-gwt ...more
David <levydev@gmail.com> Dec 22 07:37AM -0800
start by looking for any uncaught exception on the server
...more
Jeffrey Chimene <jchimene@gmail.com> Dec 22 07:40AM -0700
On 12/22/2011 2:30 AM, Alan Leung wrote:
> http://www.mediafire.com/?5tak1zzo6a3yvn0
> Still working on mac and windows.
> -Alan
Whatever they're paying you, it ain't enough.
Thanks, ...more
dodo dard <keratonjava@gmail.com> Dec 22 05:38AM -0800
Hi Khan
I would like to say good job on your complete analyse of the problem.
Well we have this problem too in our project. But it only occurred in
production because of their network latency ...more
You received this message because you are subscribed to the Google Group google-web-toolkit.
--
You can post via email.
To unsubscribe from this group, send an empty message.
For more options, visit this group.
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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
Fabien Renaud
Georgia Tech Student in Computer Science
ENSEEIHT Student in Computer Science and Applied Mathematics
Phone: 0033 678-363-272Email: contact@fabienrenaud.com
--
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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment