Re: CellTable custom header help.

2011-10-05 Thread Stanislav Ievlev
You can create a custom resources and initialize CellTable with them. -- public class CustomTable extends CellTable { public static interface TableResources extends CellTable.Resources { @Source({CellTable.Style.DEFAULT_CSS, "CustomTable.css"}) TableStyle cellTableStyle(); } public

CellTable custom header help.

2011-10-05 Thread Konstantin Zolotarev
How could I create such table ? -- 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.g

out of memory error increase heap space or lower gwt.jjs.threads

2011-10-05 Thread hockie
I tried to do code splitting in GWT but i encounter this out of memory error during gwt compilation. even though I increase -Xmx to 1400 M from 1280M. This error still happens. So, what can I do to avoid this error coming during gwt compilation? Can someone help me? -- You received this message b

Re: GWT Designer - Support to reference CSS from ui.xml as well as CSSResource

2011-10-05 Thread Eric Clayberg (Google)
The CSS editoryou refer to has actually be in the tool for a very long time. It was originally designed to support editing of global CSS styles referenced from HTML or from gwt.xml files. In the most recent GPE /

Re: How to intercept GWT RPC

2011-10-05 Thread Tomasz Gawel
If you work with spring you probably have a spring controller that extends RemoteServiceServlet implementation. (look at this topic comment) you can stick interceptor on handleRequest method as normally in Spring you would do :). or if you need to get some piece of information from decoded payloa

Re: Development Mode "Hangs"

2011-10-05 Thread Dennis Haupt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 05.10.2011 23:08, schrieb Steve: > I am trying to load a GWT project to run in development mode > within Eclipse. It worked fine for a while, but now it's stuck. > > In the "Development Mode" tab, I get the message "Development mode > is loading..

Development Mode "Hangs"

2011-10-05 Thread Steve
I am trying to load a GWT project to run in development mode within Eclipse. It worked fine for a while, but now it's stuck. In the "Development Mode" tab, I get the message "Development mode is loading..." and "Waiting for launch URLs." This remains indefinitely until I finally shut down the pr

GWT localization(i18n): make possible read on server side com.google.gwt.i18n.client.Messages (using spring on server side)

2011-10-05 Thread Ivan Bahdanau
*Problem: * Required ability to have access to GWT client com.google.gwt.i18n.client.Messages files on server side(e.g. inside Servlet). *Problem reason: * In my case I needed to generate the PDF representation of the web page + save some string values in DB(when someone posts comment). *Desired

Re: iframe with GWT

2011-10-05 Thread CSchulz
Thanks! This looks awesome! I'll give it a try. I never would've understood enough on how GWT interacts with the DOM to do this myself, but this'll be a very educational exercise for me. Thanks again! -- You received this message because you are subscribed to the Google Groups "Google Web Tool

Re: SliderBar

2011-10-05 Thread Andrea Boscolo
The incubator project is dead and no longer suppoted by gwt. Anyway you can fin it here: http://code.google.com/p/google-web-toolkit-incubator/ -- 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

Re: FileUpload and IE8

2011-10-05 Thread GeorgeS
So is this a known issue or just something IE8 does? On Oct 3, 4:27 pm, GeorgeS wrote: > This is a cross-post but I realized I'd posted on the GAE forum and > this likely belongs here. > > I have a Java app written using GAE and GWT and it makes use of the > FileUpload control to send a file to a

Re: About creating 3D maps using GWT

2011-10-05 Thread Juan Pablo Gardella
Do you see playn ? Perhaps it helps to you 2011/10/5 rahul > Hello, > > I am new to gwt.I am interested in working on 3D maps using GWT.And > also add some widgets like check boxes,textboxes,buttons to my 3D maps > on my html page.I also want some information on

Declarative UI + Google Maps

2011-10-05 Thread Nicolas
Hi I'm trying to use Google Maps in my project so I add in the gwt.xml file. I use deferred binding for create the UI and the View.ui.xml file's code is: http://dl.google.com/gwt/DTD/ xhtml.ent"> .important { font-weight: bold; }

Re: java.text.MessageFormat working on client?

2011-10-05 Thread Juan Pablo Gardella
Is the class and the method do you need are here, yes. 2011/10/5 Thiago Coraini > Hello all, > > I'm relatively new to GWT. I'm actually developing a web application > using SmartGWT, don't know if you've heard of it. > >

java.text.MessageFormat working on client?

2011-10-05 Thread Thiago Coraini
Hello all, I'm relatively new to GWT. I'm actually developing a web application using SmartGWT, don't know if you've heard of it. Anyway, I'm trying to format some internationalized messages. In the server, I'm using the Java built-in support, through java.text.MessageFormat class. But after doin

Re: iframe with GWT

2011-10-05 Thread Tomasz Gawel
and the example without a line of JSNI :) but be aware of same-domain restriction when retrieving reference iframe's content. public class IframeStyleExample implements EntryPoint { public static StyleElement addStyleSheet(FrameElement frameElement, String cssText)

Re: Indexed DB/WebStorage in GWT?

2011-10-05 Thread Philip Rogers
As Jeff points out, Storage is supported in GWT today. Storage is the HTML5 key/value pair datastore and has a 5mb limit (unless you are installed via the Chrome Web Store). John LaBanca has a good overview (that is pretty entertaining) here: http://www.youtube.com/watch?v=KEkR1ox_K10 We don't cu

Re: Use html5 webdb in GWT (without Gears)

2011-10-05 Thread dflorey
It works in chrome and safari. In chrome you'll have to create an installable app to get more than 5 mb of local storage. Hope this helps, Daniel -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit ht

Use html5 webdb in GWT (without Gears)

2011-10-05 Thread GereMora
Hi all!, Recently, I'm testing the Local Storage (com.google.gwt.storage.client.Storage) in my GWT app. It's works fine. Now, Can use the HTML5 webdb (http://www.w3.org/TR/webdatabase/) in gwt witout use G. Gears??.. Google gears is deprecated. Let me know yous opinions.. Cheers. Gere. -- Yo

About creating 3D maps using GWT

2011-10-05 Thread rahul
Hello, I am new to gwt.I am interested in working on 3D maps using GWT.And also add some widgets like check boxes,textboxes,buttons to my 3D maps on my html page.I also want some information on geocoding in gwt 3d maps.Can you guys help me?? Regards, Rahul -- You received this message because y

Re: Indexed DB/WebStorage in GWT?

2011-10-05 Thread Jeff Chimene
On 10/05/2011 10:26 AM, scott.ellswo...@gmail.com wrote: > Howdy, all, > > Is anyone using webstorage or indexedDB client side data storage with > GWT? Pointers to projects appreciated... See http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/storage/client/Storage.html

Indexed DB/WebStorage in GWT?

2011-10-05 Thread scott.ellswo...@gmail.com
Howdy, all, Is anyone using webstorage or indexedDB client side data storage with GWT? Pointers to projects appreciated... Aside: I note that the WebStorage group reached an impasse and stopped supporting the spec last fall. I note further that http://www.w3.org/TR/IndexedDB/ seems to be alive

Re: How to make plain HttpRequest just to check HTTP_RESPONSE?

2011-10-05 Thread Alfredo Quiroga-Villamil
RequestBuilder request = new RequestBuilder(RequestBuilder.GET, "URL"); try { request.sendRequest("", new RequestCallback() { @Override public void onResponseReceived(Request request, Response response) { int statusCod

Showcase mainMenu, space between MenuItems

2011-10-05 Thread Ewald Pankratz
I've tried to reduce the space between the main-menu Items without any success. How to do? I was successful with CwCellList same thing did not work with the main menu. Please help, Thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

How to make plain HttpRequest just to check HTTP_RESPONSE?

2011-10-05 Thread Jaroslav Záruba
Hello Is it possible to make a request to server to check the actual response code? ...so one could check whether the error response was 500 404, etc. So far I would write piece of native JS. Cheers Jarda Z. -- You received this message because you are subscribed to the Google Groups "Goo

SliderBar

2011-10-05 Thread Rampan
Could someone tell me how to get the GWT incubator project.. so that i can add more to 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-toolkit@googlegroups.com. To unsubscribe from this g

Upgrade issues: Eclipse plugin to 2.4

2011-10-05 Thread leathrum
I encountered a couple of unexpected problems when I upgraded my plugin for Eclipse (Helios) to v2.4 -- I finally got everything resolved, but I thought it might be worth sharing my experience. 1) The new plugin includes the ability to develop in GWT for Android native apps, but this introduces a

GWT Designer - Support to reference CSS from ui.xml as well as CSSResource

2011-10-05 Thread abby
It seems like GWT designer added an awesome CSS editor, but it looks like it only references the CSS which are referenced from the HTML file. It will be nice to actually be able to look at all the styles currently associated with a widget be it inline inside UIBInder xml or from a CSSResource. Is

Re: Trouble with GWT 2.0.4, RPC and non root account

2011-10-05 Thread Edson Richter
To anyone who faces same problem, check if you don't have gwt- servlet.jar in two or more places. In my case, I had gwt-servlet.jar in $TOMCAT_HOME/lib and WEB-INF/lib. Removed from WEB-INF/lib and now everything is working fine! Regards, Edson. On 5 out, 08:21, Edson Richter wrote: > Hi. > > I

Cross Site Requests

2011-10-05 Thread coffeMan
I am looking to make a cross site request, but i read on googles tutorials that you may need python or another scripting source. Is there a way i can use just Java to do this? I would imagine that there is, if someone can point me in the right direction...Thanks -- You received this message bec

Re: Using window.open(), Chrome and extensions in GWT project..

2011-10-05 Thread Magno Machado
>Adding another question to this: How can i get the handler for this opened window? Javascript's window.open() returns a reference to opened window. However, GWT's Window.open() doesn't, so you'll have to use JSNI here On Wed, Oct 5, 2011 at 11:10 AM, Ben wrote: > I can only PARTLY answer my own

Re: Using window.open(), Chrome and extensions in GWT project..

2011-10-05 Thread Ben
I can only PARTLY answer my own question: in a Chrome window opened via open.window() you can right-click on the title bar and select "open in tab". this returns the window to traditional form and exposes the extensions bar. This is an extra step and we'd still love to see if extensions bar can be

Server side deffered binding

2011-10-05 Thread Stanislav Ievlev
Greetings! Google Wave can determine my locale and browser and insert an appropriate permitation directly to generated html file: --

Vertical Scroll bar on the page in GWT

2011-10-05 Thread Vikram Kohli
HI All, I am pretty new to the GWT world.I am trying to get the vertical scrollable pages. I am using GWT 2.4 and UiBinder to achieve my page layouts. Throughout my application I have a header section, main content area section and footer section. I have created a separate composite for heade

Re: Permutation, code splitting and deferred property

2011-10-05 Thread Pierre Coirier
Thanks David for the follow-up. > Could this be a result of the new PersistentUnitCache / generator caching > stuff? I tried having a different generator class for each value but I still had the same issue. > Also, Soft Permutations would cause this, so make sure those are not on. I don't use the

GWT Mail Example- StackLayoutPanel Selection Event (The Shortcuts)

2011-10-05 Thread Daza
Hi all, I'm new to GWT and trying to modify the example GWT Mail application (http://gwt.google.com/samples/Mail/Mail.html) to when I click on one of the shortcut tabs on the left (ie Contacts, Mail etc), it will change the MailList part of the application (basically the maillist table) to be pop

DataGrid Pagination Problem

2011-10-05 Thread Karzai
Hi I m getting the following error can anyone please help me in resolving and getting a proper pagination flow, on clicking of the paginate icon. below is the code I have been trying to use and the exception I'm getting : Exception : === 11:17:33.939 [ERROR] [myapps] Unable to load module

Re: Getting Two Errors I just need to know Possible Reasons....

2011-10-05 Thread coffeMan
I think it has something to do with my URL string and encoding Am i suppose to include the ? and & sign in my url string and encode it? or leave them out and insert parameters in the "builder.sendRequest(parameters, new RequestCallback) ? Thanks On Oct 5, 7:27 am, coffeMan wrote: > I received t

Re: Using Multiple Panels

2011-10-05 Thread paschn
I m sorry, I mean mainData1 and mainData2 in both of them. It was a typo here. In my project it's correct. -- 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 unsubsc

Fundamental MVP Problem

2011-10-05 Thread benneq
I've got my MVP Project more or less running. But now I more and more and more get into problems with Browser Event Handling (Click, MouseOut/Over, etc.). And connected with that some other things too. I could be that my structure is no true MVP, and maybe that's the cause for my problems?! But hav

Getting Two Errors I just need to know Possible Reasons....

2011-10-05 Thread coffeMan
I received two errors: -Caused by: java.lang.UnsatisfiedLinkError: com.google.gwt.http.client.URL.encodeImpl(Ljava/lang/String;)Ljava/ lang/String; and -[ERROR] 500 - POST Any help would be greatThanks -- You received this message because you are subscribed to the Google Groups "Google

CellList navigation

2011-10-05 Thread George Agiasoglou
Hi there, I have a cell list with custom styling so it displays horizontally and if cells don't fit they fall down to the next line, effectively its looks like a 2row x 4cell table. However, I need to be able to navigate to cells using all arrows not just up and down. Alternatively, I was thi

Trouble with GWT 2.0.4, RPC and non root account

2011-10-05 Thread Edson Richter
Hi. I've the following scenario: - NetBeans IDE 7.0 with GWT4NB - Mid sized application running GWT 2.0.4 with some extensions (like GWT Math, for BigDecimals) - Apache Tomcat 7.0.11 and Apache Tomcat 7.0.20 Exactly same setup running on Windows works great. When running in Linux, if I run as ro

Re: iframe with GWT

2011-10-05 Thread CSchulz
So I found this link http://bealetech.com/blogs/sean/2010/01/embedding-html-document-iframe-gwt and I got it to work using these functions: final IFrameElement iframe = Document.get().createIFrameElement(); FlowPanel innerBox = new FlowPanel() { @Override protected void onLoad() {

Adding a collection of Suggestion to SuggestBox (replacement strings different from display strings)

2011-10-05 Thread Ice13ill
Hello, I want to create a suggest box with suggestions that have replacement strings different from display strings I created a collection of MultiWordSuggestion(replString, displayString) but i cannot find how to add them to the SuggestOracle. I have methods add(string) or addAll(stringCollection)

Continuous editing of a proxy with the Editor framework

2011-10-05 Thread Alexander Solovets
Hi there, It seems that the Editor framework implies "one-time" editing of a proxy, and once you call flush() of the driver you can't get the edited proxy back with updated values until it's persisted. Or am I wrong? I need such feature to make a persistent UI. The idea is to have a proxy obj

Re: Stange error with Chrome hosted mode

2011-10-05 Thread mjfan80
Maybe, but the fact is that 1: GWT-EXT is an "old" library, not maintened anymore 2: with Firefox and IE, also in hosted mode, i don't have any problem... either with chrome in web mode. I have this error only with chrome and hosted mode -- You received this message because you are subscribed to

Re: Using Multiple Panels

2011-10-05 Thread agi
i dont know if this is important but you also have a typo: you are saying in your html page you have: mainData1 and mainData2 and you are trying to get elements with ids: mailData1, mailData2 RootPanel.get("mailData1").add(mainPanel1); RootPanel.get("mailData2").add(mainPanel2); cheers, agata

Re: iframe with GWT

2011-10-05 Thread CSchulz
Yeah, I know about the Frame element but I don't know how to edit the head and body areas inside of it or pass it HTML to fill itself with. -- 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://

Re: Developers, please don't ignore reported GWT issues.

2011-10-05 Thread l.denardo
Some time ago I stepped into the issue lifecycle wiki page. http://code.google.com/p/google-web-toolkit/wiki/BugTriageProcess http://code.google.com/p/google-web-toolkit/wiki/ManagingMerges Maybe this can clarify some things about why issues are not updated (looks like most of times this is an ex

Re: Stange error with Chrome hosted mode

2011-10-05 Thread Jens
Caused by: com.google.gwt.core.client.JavaScriptException: (TypeError): Object [object Object] has no method 'push' and at com.gwtext.client.widgets.Container.addPreCreate(Container.java) at com.gwtext.client.widgets.Container.add(Container.java:202) at com.gwtext.client.widgets.Container.add

Re: avoid row selection on cell click in CellTable

2011-10-05 Thread David Sanders
Thanks John! - I was looking to do something similar with a file download cell that I didn't want triggering selection events but pulled my hair out trying to find out how to disable the selection. Your suggestion worked a treat - I used the blacklist method. -- You received this message bec

Re: GWT CELLTABLE : How to set descending icon to column on celltable header ?

2011-10-05 Thread Claude
Just call you method twice and the icon will be DESC :) table.getColumnSortList().push(testColumn); => ASC table.getColumnSortList().push(testColumn); => DESC -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the

Re: I need suggestions for compositeCell selection

2011-10-05 Thread FrugoFrog
My bad. The description might have been insufficient. I have an overwritten multiselection model because I want to select multiple items. I'm not sure if this makes any difference but I mentioned it just in case. My problem is how to tick check box when I click on the imageCell when the item is al

Re: GWT CELLTABLE : How to set descending icon to column on celltable header ?

2011-10-05 Thread vaibhav gwt
Thanks for replay My problem is that I want to show sorted order of column after celltable loading. eg. I have xml. I am getting only one column information i.e column(columnname, sortedOrder[false/true],dataTypeOf) as per column information I want to set ASC/DESC icon close to Column as per sorted

Re: Developers, please don't ignore reported GWT issues.

2011-10-05 Thread stuckagain
I have been frustrated with this as well and voiced my concern before. But all they keep on doing is adding features that most of us don't need. GWT is great, but there is a lot of old stuff in there that is half baked and nobody in the GWT team seems to be concerned with actually fixing bugs.