How to make a column of AnchorCell

2012-02-29 Thread tong123123
I have a table and I want the first column is like a link, when the user click on that column in a row, the detail is shown. I know there is no AnchorCell, I google a long time and some suggest to use ClickableCell but I cannot use css to make it like a link, it seems the css is not in effect.

Re: using GWT to simplify a big stack of data transformation

2012-02-29 Thread saida dhanavath
Hi, As long as you provide the required source code for the generated POJO's to GWT compiler for generating the JavaScript it will work. But, I think when you generate POJO's using XMLBeans, your POJO's will have some dependency on XMLBeans (Data Binding) annotations and GWT compiler forces you

Re: GWT Application throws JavascriptException on Windows 7 IE 8

2012-02-29 Thread Jens
You cant provide a workaround if you don't know what the error causes. You should add breakpoints and/or logging to your app to identify the code line that produces this error. I would assume the error is caused by a call like widget.getElement().get/setProperty(propertyThatDoesNotExistInIE,

Re: How to make a column of AnchorCell

2012-02-29 Thread tong123123
sorry, I found the css is not updated in server, after update, the AnchorCell is worked. On Wednesday, February 29, 2012 4:39:27 PM UTC+8, tong123123 wrote: I have a table and I want the first column is like a link, when the user click on that column in a row, the detail is shown. I know

Re: Google Plugin for Eclipse : offline installation

2012-02-29 Thread Celinio
Found it here : http://code.google.com/intl/fr-FR/eclipse/docs/install-from-zip.html On Wed, Feb 29, 2012 at 6:38 AM, Celinio cel...@gmail.com wrote: Hello, I want to install GWT Designer (UIBinder), which is part of the Google Plugin for Eclipse. I cannot install it at work through Eclipse

Re: what is gwt.codesvr=127.0.0.1:9997 used for ?

2012-02-29 Thread Thomas Broyer
On Tuesday, February 28, 2012 5:00:24 AM UTC+1, YuHong Yang wrote: gwt compiles java to bytecode and javascript, does the browser send the debug info to this address? gwt.codesvr in the URL's query-string is a signal for the *.nocache.js script to load hosted.html (or devmode.js, or

Re: Additional plugins are required to display all the media on this page - Firefox 10.0.2

2012-02-29 Thread Jee
Plug in missing message - Additional plugins are required to display all the media on this page - Firefox 10.0.2 version and Google Chrome 15.0.874.121 this plug in message is mainly looking for windows media player plugin But this plug in install message not displayed in IE browser On Tuesday,

How to load an external JS-file without calling a function in there

2012-02-29 Thread newnoise
Hi, I'm trying to dynamically add advertisement to our page. Our advertisement-partner provides us a script which we have to include like this: script type=text/javascript src=http://www.somesource.com/ output.js?id=123/script The output.js just contains one line of code like this:

Re: GWT application freezes when new version is deployed while using it

2012-02-29 Thread Thomas Broyer
On Wednesday, February 29, 2012 4:38:32 AM UTC+1, coderinabstract wrote: Experiencing a similar problem and this seems to be very frustrating for user experience management especially if you are doing agile build life cycle with frequent releases. The situation is that AsyncCallback

Re: How to load an external JS-file without calling a function in there

2012-02-29 Thread Thomas Broyer
Anything relying on document.write() must be in your HTML source when it's being parsed; they can't be loaded dynamically. On Wednesday, February 29, 2012 2:14:35 PM UTC+1, newnoise wrote: Hi, I'm trying to dynamically add advertisement to our page. Our advertisement-partner provides us a

Re: How to load an external JS-file without calling a function in there

2012-02-29 Thread salk31
If you know the size of ad ahead of time then iframe? On Wednesday, February 29, 2012 1:14:35 PM UTC, newnoise wrote: Hi, I'm trying to dynamically add advertisement to our page. Our advertisement-partner provides us a script which we have to include like this: script

Re: Additional plugins are required to display all the media on this page - Firefox 10.0.2

2012-02-29 Thread Tony Edgin
I'm sorry. I can't help you. Maybe someone else can. On Wed, Feb 29, 2012 at 05:54, Jee sundarra...@gmail.com wrote: Plug in missing message - Additional plugins are required to display all the media on this page - Firefox 10.0.2 version and Google Chrome 15.0.874.121 this plug in message

Re: Additional plugins are required to display all the media on this page - Firefox 10.0.2

2012-02-29 Thread Thomas Broyer
On Wednesday, February 29, 2012 1:54:37 PM UTC+1, Jee wrote: Plug in missing message - Additional plugins are required to display all the media on this page - Firefox 10.0.2 version and Google Chrome 15.0.874.121 this plug in message is mainly looking for windows media player plugin So

Re: GWT DEveloper Plugin for Chrome

2012-02-29 Thread Winzter
Any update on this? I have same problem. On Feb 16, 5:54 am, Jamie jamiesharbor-sou...@yahoo.com wrote: You could try Firefox.  It also has a GWT developer plugin.  Maybe that will install correctly for you? On Feb 11, 10:06 pm, Ragsh ragsh.sk...@gmail.com wrote: Hi All, I am using

Selecting list items from history actions using Activities and Places

2012-02-29 Thread Shaun Tarves
Hi all - First off, thanks for all the great info on this board. I've gotten so much out of it. However, I'm having a problem I haven't seen addressed before. Here's my scenario: 1) I have 2 places, 2 separate activity managers/mappers (one for a menu display area and one for content display

right to left tree items

2012-02-29 Thread danit ba
Hi, I am trying to create right to left tree. I changed the theme to the RTL theme: inherits name='com.google.gwt.user.theme.standard.StandardRTL'/ and the tree seems right to left (the + is in the right side) , but when I add sub items to the tree (TreeItem, Buttons,Labels) they are all

Re: GWT application freezes when new version is deployed while using it

2012-02-29 Thread Stephen Haberman
Is there a clean way to *not* require the user to refresh the page? Everything Thomas said is right, and I'll chime in with my own experience. Basically: - If you use IsSerializable and no type-name elision you won't have to keep old GWT RPC policy files around between builds (the legacy

Re: How to load an external JS-file without calling a function in there

2012-02-29 Thread JoseM
Check their API or read their javascript code, there might be a way to pass an id of a div which they would use to append to instead of using document.write. That's what I found when trying to use Twitter's Widget api, it was documented but I did find it by reading their code and seeing what

Re: Accessint GWT's HIstory Stack

2012-02-29 Thread Lars
Thanks for your input. Regarding History object and the firing of ValueChangeEvents... I've confirmed that the events are not being fired with this: History.addValueChangeHandler(new ValueChangeHandlerString() { @Override public void onValueChange(ValueChangeEventString

Re: GWT RPC not working behind Apache and Tomcat

2012-02-29 Thread mukarev
Hi again, a friend of mine solved the problem during the night. I will force him to write the solution here. Thanks for your thoughts. Greetz Markus On 25 Feb., 18:25, mukarev muka...@googlemail.com wrote: Hi folks, I'try to serve two gwt webapps via one apache from one tomcat with JK and

Re: Selecting list items from history actions using Activities and Places

2012-02-29 Thread Chris Price
I thought singleselectionmodel swallowed setting the selected value to itself? On 29 Feb 2012 16:29, Shaun Tarves sh...@tarves.net wrote: Hi all - First off, thanks for all the great info on this board. I've gotten so much out of it. However, I'm having a problem I haven't seen addressed

Re: using GWT to simplify a big stack of data transformation

2012-02-29 Thread JoseM
You can also use RequestFactory ValueProxy On Wednesday, February 29, 2012 3:42:55 AM UTC-5, Sai wrote: Hi, As long as you provide the required source code for the generated POJO's to GWT compiler for generating the JavaScript it will work. But, I think when you generate POJO's using

Re: Accessint GWT's HIstory Stack

2012-02-29 Thread Jens
Regarding History object and the firing of ValueChangeEvents... I've confirmed that the events are not being fired with this: History.addValueChangeHandler(new ValueChangeHandlerString() { @Override public void onValueChange(ValueChangeEventString event) {

Re: Selecting list items from history actions using Activities and Places

2012-02-29 Thread Shaun Tarves
It does, but this is a differrent issue. The selectionmodel needs to be notified of selection somehow if the user isn't selecting with mouse or keyboard. My problem is when the user *navigates* to a state in the app where an item should appear to be selected - directly via a URL (as

How to compile a particular class

2012-02-29 Thread Deepak Singh
Hi All, I have the following scenario. In GWT application, i have two seperate modules, not inherited one from another. Module A has class AbcDTO implements Serialisable { } in its shared package. Module B has a different shared package. What i want is to compile AbcDTO with module B so

Compiling from command line

2012-02-29 Thread Nick Siderakis
/usr/lib/jvm/jdk1.6.0_26_32/bin/java -cp ~/Software/Java/gwt-trunk/build/staging/gwt-0.0.0/gwt-dev.jar -Xmx512m com.google.gwt.dev.Compiler -logLevel INFO -style OBFUSCATED -war ~/Software/Java/workspace/MyProject-AppEngine/war -localWorkers 4 project.Embed project.Project project.Mobile

What is header size attribute in TabLayoutPanel (UiBinder)?

2012-02-29 Thread Thad
I'm following the UiBinder example for a TabLayoutPanel, and I'm wondering what a header's size attribute is. From the example in the javadoc: g:TabLayoutPanel barUnit='EM' barHeight='3' g:tab g:header size='7'bHTML/b header/g:header g:Labelable/g:Label /g:tab ... So what is size,

Re: GWT application freezes when new version is deployed while using it

2012-02-29 Thread Joseph Lust
Kyle, Can you hardcode the onclick=window.location.reload(); method in the OK button, so it should still work even if the GWT frontend is hosed? Sincerely, Joe On Jan 11, 8:56 am, Kyle Baley k...@baley.org wrote: We've gone Thomas's original suggest route of informing the user. But in our

Re: GWT application freezes when new version is deployed while using it

2012-02-29 Thread Joseph Lust
To add to Stephen's points, - Using legacy mode, or keep the last set of RPC files around (so you have N N-1) should let the users fail gracefully w/o deserialization errors. Then you can check the app version number (say put this check on your async interfaces) and prompt for reload. - App

Re: How to load an external JS-file without calling a function in there

2012-02-29 Thread Joseph Lust
newnoise, I thought you could just place the script tag in your manifest file and that external library would be loaded into the page. Perhaps you've already tried this, but I did not see it mentioned above. i.e. module rename-to='app' ... script src=advert.js/script ... Otherwise, can you

how to look the widget's html code generated by gwt

2012-02-29 Thread tong123123
as captioned, any method to know what html is generated for a widget by gwt? I see many post can create a subclass of widget and override the render() method, but seem they know what is the original html generated by the widget, how could they got this information? -- You received this message

Re: the output of DialogBox is very strange

2012-02-29 Thread jhulford
I don't think setSize is really supported for the content area of the DialogBox since setSize is inherited from UIObject. I believe the size you're setting is the actual dialog box's outer dimensions (ie. the DecoratorPanel's table) and not your content's dimensions. What you'll really want to

about css style in gwt

2012-02-29 Thread tong123123
in gwt developer guilde http://code.google.com/webtoolkit/doc/latest/DevGuideUiCss.html complex style section: .gwt-MenuBar { /* properties applying to the menu bar itself */ } .gwt-MenuBar .gwt-MenuItem { /* properties applying to the menu bar's menu items */ }

Re: GWT application freezes when new version is deployed while using it

2012-02-29 Thread Kyle Baley
Joe, We've done something similar. Rather than show a pretty dialog, we embedded some JSNI code in the onAsyncCallFail call. This shows a standard window.confirm dialog, then calls $wnd.location.href = href (I seem to recall window.location.reload didn't work). We also deploy in the wee weekend

GWT

2012-02-29 Thread blrnrc
Hi to all, I'm very new on GWT. I have to rebuild an old web app that use GWT (maybe 1.x) beacuse it can be accessed by last browsers. I need some advice! What is the best practice to do this? What can I do to achive my gol? Thanks very muych. -- You received this message because you are

String to Object Structure in GWT

2012-02-29 Thread Deepan
Hi All, I am relatively new to GWT. I have input as a string and i want to convert it into object structure. I was wondering how it can be done in GWT. Example String - *(node1(node2(node3) (node4)) (node5))* node1 has 2 children node2 and node5 node2 has 2 children node3 and node4 More

Windows 8

2012-02-29 Thread mmcgov...@civica.com.au
Wrapping the Windows 8 JS API in GWT Anyone looking at 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

Proguard Causes The RequestFactory ValidationTool must be run Error

2012-02-29 Thread Double
Title pretty much says it, when I have proguard enabled I get the error, when I disable it (or run in debug mode) everything is fine. Any help would be appreciated. *Stack Trace:* 02-29 17:24:04.195: E/AndroidRuntime(18174): FATAL EXCEPTION: IntentService[at email] 02-29 17:24:04.195:

Session Tracking

2012-02-29 Thread JAGINI UDAYKUMAR
Hi I am working on gwt. I want to know how to handle sessions(Session Tracking like in servlets). Can anyone help me. -- 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.

Re: Session Tracking

2012-02-29 Thread Maverick
Write a service on Server side which extends RemoteServiceServlet. Create an object of type HttpSession as a member. Write methods to serAttribute and getAttribute. On client side. Inject the service and call setAttribute and getAttribute methods wherever you want to add data to session or

[gwt-contrib] Re: Porting RequestFactory to Dart

2012-02-29 Thread Thomas Broyer
On Tuesday, February 28, 2012 6:50:17 PM UTC+1, Alexander Orlov wrote: How feasible is it to port RF over to Dart? On the client-side RF consists of the interfaces and the Receiver. Both things could be ported to Dart so a Dart app can speak with a RF-enabled Java backend that serves the

[gwt-contrib] Re: Porting RequestFactory to Dart

2012-02-29 Thread Alexander Orlov
On Wednesday, February 29, 2012 12:30:58 PM UTC+1, Thomas Broyer wrote: Yes, that's what's great with RF: it's a more a protocol than a API (contrary to GWT-RPC). The protocol itself hasn't changed since GWT 2.1.0 (or maybe 2.1.1), so it's feasible to write RF clients (or servers) in any