Adjusting height of GWT Panels based on content dynamically

2012-08-08 Thread Santosh
We have many screens where different types of GWT panels are used. One common problem across many screens is that, content size is derived at runtime. So, if I define a height for a panel(Vertical/Horizontal/ DockPanel) and when any new components are getting added within panel or content is more,

SuperDevoMode and Source Maps

2012-08-08 Thread Adolfo Panizo Touzon
Hi all, I am trying to user SuperDevMode with SourceMaps but I think I am doing something wrong. I succeeded running the code server as a Java process (I have the bookmarks Dev mode on and Dev mode off in my browser's tab), also I have running the app without problems and even if I make click on

Re: Adjusting height of GWT Panels based on content dynamically

2012-08-08 Thread Alexandre Ardhuin
Hi, Have you look at com.google.gwt.user.client.ui.HeaderPanel ? Alexandre 2012/8/8 Santosh santosh.ku...@darkhorseboa.com We have many screens where different types of GWT panels are used. One common problem across many screens is that, content size is derived at runtime. So, if I define

Re: SuperDevoMode and Source Maps

2012-08-08 Thread Paul Robinson
Have you enabled source map support in chrome? Click the settings cog/wheel thing in the bottom-right corner, and tick Enable source maps. Also, you must compile while the developer tools tab is open, or else it won't show the java source code. HTH Paul On 08/08/12 08:42, Adolfo Panizo Touzon

Re: SuperDevoMode and Source Maps

2012-08-08 Thread Adolfo Panizo Touzon
Hi Paul, thank you for answering. Yes, I had the source maps enabled, and I did the compilation with the developers Tools open and it's the same. I can see the myapp.devmode.js and the myapp.nocache.js, but not the code. It's strange because in the work dir ( -workDir The root of the directory

Re: GWT future

2012-08-08 Thread funkforce
Thanks! Den tisdagen den 7:e augusti 2012 kl. 16:14:14 UTC+2 skrev Richard: IE10 will be able to work as if it's a previous version. This page should explain it: http://msdn.microsoft.com/en-us/library/ff955275(v=vs.85).aspx On Tuesday, August 7, 2012 4:10:22 PM UTC+2, funkforce wrote:

Re: SuperDevoMode and Source Maps

2012-08-08 Thread Julien Dramaix
Do you add these two lines in your gwt.xml file : add-linker name=xsiframe/ set-configuration-property name=devModeRedirectEnabled value=true/ On Wednesday, August 8, 2012 11:03:11 AM UTC+2, apanizo wrote: Hi Paul, thank you for answering. Yes, I had the source maps enabled, and I did the

Re: SuperDevoMode and Source Maps

2012-08-08 Thread Thomas Broyer
I might be wrong (this is from memory) but myapp.devmode.is rings a bell: are you by any mean running in DevMode? I.e. do you have ?gwt.codesvr= in your URL? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the

SuperDevMode and server-side code

2012-08-08 Thread Thomas Broyer
You shouldn't load your app from the code server, but from your app server. When you invoke the Dev Mode On bookmarklet, it'll load the app from the code server, but the app's origin will still be your app server. Short answer: run them on distinct ports, or even distinct machines. This is no

Re: SuperDevoMode and Source Maps

2012-08-08 Thread Adolfo Panizo Touzon
Thomas, you are right! Now I can see all the code, but I am receiving SOP problems. I've read in other posts that if I copy/paste all the *.gwt.rpc files into my war folder, I can avoid that problems... is that correct? But... when I am trying to compile the app I receive this error:

Re: GWT future

2012-08-08 Thread David
Anyone have insight as to the future of gwt-platform? -- 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/-/ikihJOJBCgoJ. To post to this group, send

Re: GWT future

2012-08-08 Thread Andy Stevko
David, Its a BUY-long on my list. Seeing the huge line of peeps waiting for the history future session was a sure signal that there is a lot of interest (outside of google). The volume of GWT recruiter hits on my LinkedIn profile means there is new work being done, Moving to an external F/OSS

Showing and Editor's errors

2012-08-08 Thread Alexander Orlov
If an Editor doesn't satisfy an Entity's constraints, it calls driverCtx.fire(new ReceiverVoid() { @Override public void onConstraintViolation(SetConstraintViolation? violations) { dialog.setText(Errors detected);

Re: Showing and Editor's errors

2012-08-08 Thread Jens
Your editor views should implement HasEditorErrors and then you have access to the errors in your view so you can visualize them. As an example you can take a look at ValueBoxEditorDecorator which can wrap a ValueBox and displays any error for that ValueBox as a Label above the ValueBox. Not

Re: GWT vs YUI

2012-08-08 Thread Sebastián Gurin
I'm doing a YUI 3 GWT Java API on code.google.com/p/*yuigwt*/http://code.google.com/p/yuigwt/ On Tuesday, December 4, 2007 9:59:37 AM UTC-2, eliasb...@gmail.com wrote: I personally believe GWT is best case scenarion for people that refuse or want to avoid the quirks of HTML+JavaScript It is

[2.5rc1] Does .ui.xml file for AbstractCell support GWT Panels and Widgets?

2012-08-08 Thread 退5的工科苹岷
Following instruction of Rendering HTML for Cells in devGuide of UiBinder, it works. *But does template file (.ui.xml) support GWT Panels and Widgets?* I replaced div by g:HTML (also g:FlowPanel) with g:TextArea in .ui.xml file, no error or exception was thrown out, but also nothing was shown.

Re: Disclosure Panel - how can I avoid from button border?

2012-08-08 Thread Vaishali Kulkarni
DisclosurePanel wraps the header in an a, hence the underlined text and bordered image. You need to remove the default CSS that GWT provides for DisclosurePanel and DisclosurePanelHeader Remove .gwt-DisclosurePanel, .gwt-DisclosurePanel-closed and .gwt-DisclosurePanel-content from the

facebook authentication

2012-08-08 Thread Alejandro Montenegro
Hi, developing an app and would like to use facebook api to do user authentication. Does any has a pointer about how to do this integrated with GWT? thanks Alejandro -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Problem generating Elemental sources

2012-08-08 Thread John A.
Getting this stack trace when trying to run the generate target on elemental: [john@vaadin elemental]$ ant generate Buildfile: /home/john/Repositories/gwt/trunk/elemental/build.xml generate: [exec] Traceback (most recent call last): [exec] File

Re: GWT future

2012-08-08 Thread Tim
On Monday, August 6, 2012 1:05:55 AM UTC-7, funkforce wrote: Do you meant that if I deploy an app compiled with GWT 2.4 today and in a few weeks a new browser version is released , that app wont work with the new browser? Certainly possible. Browsers break backwards compatibility

Re: byte array to Image

2012-08-08 Thread ganesh R
Thank you it worked for too... -- 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/-/1AYWZThemMAJ. To post to this group, send email to

Re: GWT future

2012-08-08 Thread Ryan Shillington
FunkForce, do the math. If GWT 2.4 came out before the browser was even in beta, how could they have tested it? Now with that said, browsers are generally tested against a multitude of different sites. At least a few of them are using GWT. So it's highly improbable that your site won't work

Lock columns using flextable

2012-08-08 Thread JDThermo
I spent all day looking for a solution to my problem and couldn't find anything which I find surprising. I have some flexibility on changing the code, but to move away from using FlexTable would be painful so I would prefer not to have to do that. We had a solution that was IE specific that

UiObject not supported in UiBinder's declarative XML ?

2012-08-08 Thread gwtlearner
The GWT plugin generates the type UiObject for HTML only UiBinder, However this class cannot be used in other widgets ui.xml That is, for something like this: g:HTMLPanel app:MyUiObjectWidget / /g:HTMLPanel At compile time GWT says : [ERROR] Not allowed in an HTML

Re: RequestFactory Error -- java.lang.IllegalArgumentException: Something other than a Java object was returned from JSNI method

2012-08-08 Thread Ryan Shillington
It's already been reported here: http://code.google.com/p/google-web-toolkit/issues/detail?id=5778 Looks like it's a devMode only issue. Ryan On Wednesday, April 25, 2012 10:14:04 PM UTC-5, Pradeep B Pillai wrote: The following is the other error i get frequently and this seems like its

[2.5rc1]bugs in CompositeCell?

2012-08-08 Thread 退5的工科苹岷
Dear All I am just a newbie, I don't know whether this is a place to report bug. If not, please tell me where should I put. Seems CompositeCell only accept 2 child-Cells, otherwise, exceptions will be thrown in Development Mode. If these 2 child-Cells are both ActionCells, it might trigger

Re: log4j for GWT

2012-08-08 Thread Hendrik Brummermann
Vinayak wrote: How to configure log4j for GWT. I ported log4j to GWT: http://log4j-gwt.sourceforge.net/ It uses the GWT handlers as appenders, so the configuration is done in your something.gwt.xml file as described on

Can't install gwt plugin for chrome/firefox/internet explorer

2012-08-08 Thread danielMartinus
I tried to install the browser plugin of gwt to finally run an application in my browser, now did i found out its a really painfull operation. And to make sure to everyone i searched on many discussions but could not find the answer. I am using Windows 7 and Eclipse (with all sdk's etc. needed

Re: CellList categories

2012-08-08 Thread 退5的工科苹岷
Why not CellTree or CellBrowser? 2012/8/7 Jens jens.nehlme...@gmail.com Hi, is it somehow possible to extend CellList so it supports categories? And maybe make it possible that categories get attached to the top of the CellList when scrolling, so you can always see to which category the

Re: GWT Cross Site Iframe Linker and Script Tags

2012-08-08 Thread blurk
On Tuesday, July 24, 2012 11:32:56 AM UTC+2, Daniel wrote: Thanks for the explanation. I find this very interesting. This means I'll be able to extend the CrossSiteIframeLinker Linker and overwrite the fillSelectionScriptTemplate() function to include all required scripts with sth like

Re: RequestFactory Error -- java.lang.IllegalArgumentException: Something other than a Java object was returned from JSNI method

2012-08-08 Thread Ryan Shillington
I've been seeing something similar for ages. My code isn't anywhere in this stack trace. I have no idea what to do. I'll report it. java.lang.IllegalArgumentException: Something other than a Java object was returned from JSNI method

Re: GWT ui:style how big of a bad idea (or not) is it to use it?

2012-08-08 Thread Ryan Shillington
I don't use JQuery, and I can't see a reason why you would. JQuery is Javascript, which brings you back into the world of not having your code compiled until you (or worse your user) executes it. If you really want to use JQuery for something, you can always us the @external flag. Then it

Re: GWT AND SOAP

2012-08-08 Thread Vassilis Virvilis
Hi everybody, Sorry for the late post. I was offline On 07/26/12 16:31, Blake McBride wrote: Greetings, I ran through the same issues. Spent quite a bit of time banging my head against the wall. (Still am!!) I sense a lot of GWT stuff is simple to those who already know

Re: DevMode not working in Chrome after update

2012-08-08 Thread Bertrand CHEVRIER
Got the same issue, any way to force the developper mode? On Thursday, August 2, 2012 3:23:33 PM UTC+2, Rahul wrote: +1 for the issue. Annoying. On Thursday, August 2, 2012 9:20:45 AM UTC+2, Moshe Shaham wrote: I have the same problem with newest chrome 21 it was not installed previously.

Tree View

2012-08-08 Thread Praveen Jesudoss
HI, I want to show tree view in my application. From db i retrieved data like level,id,name,parent id. I stored this in array list. now i want to show the data in tree view. i am not able to get correct parent node and child. Please help me to achieve this. Thanks and Regards, Praveen J --

RequestFacory Validation issues

2012-08-08 Thread Cristian Rinaldi
Validation in the RequestFactory API is done only over Default group, and it is performed at the RF ServiceLayer level. It is not possible to map ConstraintViolationExceptions raised at the application level. I have been analysing the SimpleRequestProcessor.process() method and I have concluded

Can't install gwt plugin from Internet Explorer

2012-08-08 Thread Anjum Abbas
Hi I'm new to this group. I've been using Firefox for GWT testing so far but now need to use IE. But when I try and use IE it comes up with a message saying I need to install the GWT developer plugin. So I've tried clicking on the link and I can manage to save the gwt-dev-plugin-x86.exe file.

Examples and implementation of Dynamic String Internationalization for UIBinder and its classes.

2012-08-08 Thread Bens
Hi all, We have started a small GWT project which needs to support multiple languages. For that we go for internationalization technique in GWT. As far we read the GWT Internalization module, static implementation was simple but for that we need to re-compile each and every time we change any

GWT 2.4 DevMode almost always hangs at Checking for updates

2012-08-08 Thread Tim Boemker
When I try to launch a GWT project, com.google.gwt.dev.DevMode hangs about 90% of the time after writing Checking for updates to the console. Here's the stack trace for the threads that look interesting: Thread [main] (Suspended) DevMode(DevModeBase).ensureCodeServerListener()

How to implement new Date component in GWT

2012-08-08 Thread varshith
-- 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/-/7H7Yi1IaBYgJ. To post to this group, send email to google-web-toolkit@googlegroups.com. To

How to do Collapse/expand CellTable in GWT 2.4

2012-08-08 Thread Salcon
I would like to have a CellTable with Collapse/Expand rows. I have seen that in GWT 2.5 has a way to do that but I've not been able to find a way to do that in GWT 2.4. I tried to do with CellTree, but CellTree only supports one column and I need 3 or 4 columns in the child node. -- You

Re: GWT future

2012-08-08 Thread David
That would be gwt-platform as in gwtP http://code.google.com/p/gwt-platform. I'm not looking for comparisons to other MVP solutions. I'm just wondering if gwtP is something that will continue to be developed. thanks. On Wednesday, August 8, 2012 1:20:19 PM UTC-4, Stevko wrote: David,

Re: Tree View

2012-08-08 Thread Thad
If you mean a CellTree, you're gonna need to generate a List for each level of your tree. See the second example in http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/cellview/client/CellTree.html On Wednesday, August 8, 2012 2:18:30 AM UTC-4, Praveen Jesudoss wrote:

Adjusting height of GWT Panels based on content dynamically

2012-08-08 Thread Andrei
You use the same HTML/CSS techniques for building fluid layouts in GWT as in any other framework. You want to rely as much as possible on the browser's ability to re-flow the content, instead of using fixed width/heights. Typically this means using a LayoutPanel to split the page into 2-3 areas

LayoutPanel animation with Canvas

2012-08-08 Thread RyanZA
I have a layout panel with two child panels, with one of the children being a HTML5 canvas. It all works well until I try to use the animate() method of the parent canvas to move the children around. It makes the canvas lose its image and reset to transparent. Any idea why animate() would do

display GWT dialog when a link is clicked in jsp

2012-08-08 Thread James
I have already used GWT to develop a dialog. From a gwt application, I can open this dialog from Anchor. I have a struts 2 application. I want to integrate this GWT dialog to a dynamic jsp page. On this jsp page, there are a lot of links that represent records. I want to open a GWT dialog once

[gwt-contrib] Re: Allows UiRenderer styles before the first call to render() (issue1794803)

2012-08-08 Thread rchandia
http://gwt-code-reviews.appspot.com/1794803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Allows UiRenderer styles before the first call to render() (issue1794803)

2012-08-08 Thread rchandia
http://gwt-code-reviews.appspot.com/1794803/diff/1/user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java File user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java (right):

[gwt-contrib] Re: Move GAE Auth functionality from Expenses over the MobileWebApp sample. (issue1806803)

2012-08-08 Thread rchandia
http://gwt-code-reviews.appspot.com/1806803/diff/1/samples/mobilewebapp/src/main/webapp/WEB-INF/appengine-web.xml File samples/mobilewebapp/src/main/webapp/WEB-INF/appengine-web.xml (right):

[gwt-contrib] Re: Added SetSelectionModel interface and made Single- and MultiSelectionModels (issue1798806)

2012-08-08 Thread skybrian
Yes, by editing the description in Critique. (I just did that for you.) http://gwt-code-reviews.appspot.com/1798806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Implemented a subset of the bootstrap configuration which allows for Validator customization. (issue1807803)

2012-08-08 Thread idol
Reviewers: Nick Chalko, cromwellian, Description: Implemented a subset of the bootstrap configuration which allows for Validator customization. [JSR 303 TCK Result] 191 of 204 (93.63%) Pass with 12 Failures and 0 Errors. Please review this at http://gwt-code-reviews.appspot.com/1807803/