Re: Could somebody please point me to the GWT developer plugin for Chrome on the Chrome web store.

2012-09-05 Thread Tony Kayrouz
Open chrome browser : Tools - Extension and drag drop the plugin http://gwt.google.com/missing-plugin/MissingPlugin.html On Monday, August 27, 2012 6:16:05 AM UTC+3, Anjan Bakshi wrote: I can't find it on the web store, and I can't install it any other way. -- You received this message

Re: when compile, cannot found the file in jar

2012-09-05 Thread tong123123
I even try to add source path='hk.gov.ehr.service.tch.als.admin.viewer.client'/ but the same error still prompted when compile, so how to compile the java source (java file) in a dependency jar? is inherits in *.gwt.xml related? On Wednesday, September 5, 2012 11:48:50 AM UTC+8, tong123123

Re: when compile, cannot found the file in jar

2012-09-05 Thread tong123123
I even try to add source path='hk.gov.ehr.service.tch. als.admin.viewer.client'/ but the same error still prompted when compile, so how to compile the java source (java file) in a dependency jar? is inherits in *.gwt.xml related? -- You received this message because you are subscribed to the

Re: Editor with ListBox in UiBinder

2012-09-05 Thread Ümit Seren
valueBox.setAcceptableValues(ListEntityProxy values); On Tuesday, September 4, 2012 1:32:37 PM UTC+2, Drew Spencer wrote: Did you guys get anywhere with this? I'm learning the Editor Framework and my ValueListBox only contains the actual value - how do I make it so that I populate the list

Re: when compile, cannot found the file in jar

2012-09-05 Thread tong123123
my origin GWT module AlsAdminViewerWebApp.gwt.xml has module rename-to='alsadminviewerwebapp' under package hk.gov.ehr.service.tch.als.admin.viewer I try to add inherits name='hk.gov.ehr.service.tch.als.admin.viewer.alsadminviewerwebapp'/ or inherits

Re: Editor with ListBox in UiBinder

2012-09-05 Thread Drew Spencer
Hi, I created a list of the 4 strings, called setAcceptableValues(list) in the connstructor, but now I get the 4 values in the list, plus a null entry. What am I doing wrong? This is my AddressEditor.java: public class AddressEditor extends Composite implements EditorAddress { private static

Single images of corner.png/circles.png, etc

2012-09-05 Thread Musicman75
Hello, I need to generate a new theme for gwt. Therefore I need the single images of the combined corner.png, circles.png, etc. Is there a possibility to get these images as single images (not wrapped together)? Is there an other way to build an own theme and using images instead of the default

Re: when compile, cannot found the file in jar

2012-09-05 Thread Thomas Broyer
On Wednesday, September 5, 2012 5:48:50 AM UTC+2, tong123123 wrote: [WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent! [INFO] Compiling 5 source files to D:\workspace\als-admin-viewer-webapp-forTesting\target\www\WEB-INF\classes

Is it possible to reinitialize a GWT application?

2012-09-05 Thread Charles Chan
Hi, I know this sounds weird.. but I wonder if it's possible to reinitialize a GWT application without a browser refresh? My GWT application lives in a RootPanel (ie. one of the HTML element in my page). Thanks! Charles -- You received this message because you are subscribed to the Google

Re: Editor with ListBox in UiBinder

2012-09-05 Thread Thomas Broyer
On Wednesday, September 5, 2012 12:54:52 PM UTC+2, Drew Spencer wrote: Hi, I created a list of the 4 strings, called setAcceptableValues(list) in the connstructor, but now I get the 4 values in the list, plus a null entry. What am I doing wrong? If there's a 'null' entry that you

Re: Editor with ListBox in UiBinder

2012-09-05 Thread Drew Spencer
Hi Thomas, I was hoping you would see this as I've read your blog posts and answers on SO but am still confused. This is the first time I've used the Editor framework The address is a sub-editor of Person, which is simply being created on an onBind() of a test presenter I'm using:

Re: when compile, cannot found the file in jar

2012-09-05 Thread tong123123
thanks for the reply. I am at home now and cannot test the solution. But I try to google this afternoon and see the following links http://www.vogella.com/articles/GWTModules/article.html http://nicozan.wordpress.com/2011/03/17/gwt-adding-jar-dependency-to-our-gwt-project-maven-gwt-plugin/ they

GWT Open .CSV Document in Excel without saving file at server side.

2012-09-05 Thread KalyanChakri
This is a solution Post of how GWT app can launch Excel or other applications and load a file, without saving a file at server end. The idea to save .csv/Excel resource to hardisk and later delete is more Resource oriented. This pushed me to use above methodology. Not sure if there are other

compiled file ending with *.htm instead of *.html

2012-09-05 Thread James
Is there a possible way to pass some parameter to compiler so the compiler can generate javascript file ending with *.htm instead of *.html? So far I just manually edit the generated javascript files and change the file extension. Thanks, James -- You received this message because you are

Re: Editor with ListBox in UiBinder

2012-09-05 Thread Jens
Currently ValueListBox automatically adds a null value even if its not in the list of acceptable values. You don't have to call ValueListBox.setValue(null) yourself. That's because setAcceptableValues() calls updateListBox() which adds the currently selected value to the ListBox if its not in

Re: GWT Compilation Time Performance Improvement

2012-09-05 Thread Ryan Shillington
Niraj, you didn't mention the -localWorkers flag. On a quad-core machine that reduced our compile time to about 1/3 of what it was (our 300s compile time became 100s). Ryan On Tuesday, September 4, 2012 1:10:19 AM UTC-5, Niraj Salot wrote: Hi Members, We are using GWT Version 2.4 in our

Re: Single images of corner.png/circles.png, etc

2012-09-05 Thread Ryan Shillington
There's no way (that I know of) to change an image's color in GWT. That kind of thing is child's play in Adobe Photoshop / Gimp. If you want a really nice site design, you're almost certainly going to need to create these images yourself. Also, CSS3 supports doing most of that kind of stuff

CellList - is there a better way than building raw html?

2012-09-05 Thread markww
Hi, I'm looking at the CellList demo, the AbstractCell implementation is generating raw html strings for a cell presentation implementation: http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList static class ContactCell extends AbstractCellContactInfo { ...

Re: Meteor DDP - or similar - with GWT?

2012-09-05 Thread Thomas Lefort
Another one... GWTEventService http://code.google.com/p/gwteventservice/wiki/StartPage If anyine has used it and has an opinion, I am interested. On Monday, 3 September 2012 23:29:23 UTC+2, nino wrote: I like Errai a bit more :) 2012/9/3 Thomas Lefort lefor...@gmail.com javascript: I

Re: CellList - is there a better way than building raw html?

2012-09-05 Thread Jens
In GWT 2.5 you can use UiBinder for Cells so you don't have to write the raw HTML inside your code. https://developers.google.com/web-toolkit/doc/latest/DevGuideUiBinder#Rendering_HTML_for_Cells But you can't use ordinary GWT widgets like Buttons, etc inside Cells. -- J. -- You received this

Re: CellList - is there a better way than building raw html?

2012-09-05 Thread markww
Hi Jens, Let's say I only plan on having 20 rows at any given time. If I were to implement a list using a ScrollPanel + 20 VerticalPanel instances as rows, could you see that working? I'd be mostly concerned with being able to scroll the list nicely on mobile devices (fling scrolling, elastic

GWTTESTCASE and SSL

2012-09-05 Thread jana
I'm using GWTTestCase but need the ability to configure it to use SSL. I can't seem to find any information on how to do that. I'm using Google Plugin for Eclipse and use Run as GWT Test Case. Everything works except that I need to use SSL. -- You received this message because you are

عايزشركه شحن من الدمام الي مصر

2012-09-05 Thread hussain hussain
عايزشركه شحن من الدمام الي مصر -- 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/-/lE_i2E8d6zAJ. To post to this group, send email to

[no subject]

2012-09-05 Thread ROHIT KUMAR
*send me updated resumes at **immy...@gmail.com* * Sharepoint Developer Duration - Long Term Location: Montvale , NJ EAD/GC/Citizen * We are looking for a candidate with strong analytical skills. The candidate must be team-focused with a strong customer service approach. Attention to detail,

[no subject]

2012-09-05 Thread ROHIT KUMAR
Sam HMG 12:55 AM (1 minute ago) to Harry, me *Send me resumes at immy...@gmail.com* *Sharepoint Developer ONLY US CITIZEN Location: Queens, NY Interview: Phone followed by face to face * A Sharepoint developer with at least 2 or more years experience in developing custom application using

Fwd: Recruiting-Simplifies Vignette portal 8.x

2012-09-05 Thread ROHIT KUMAR
-- Forwarded message -- From: ROHIT KUMAR immy...@gmail.com Date: Tue, Sep 4, 2012 at 8:27 PM Subject: Recruiting-Simplifies Vignette portal 8.x To: ROHIT KUMAR immy...@gmail.com *PLEASE SEND ME Y OUR RESUME TO *immy...@gmail.com * * *Position: Vignette portal 8.x Location:

[no subject]

2012-09-05 Thread ROHIT KUMAR
SEND ME RESUMES AT immy...@gmail.com POSITION: Infrastructure Architect Duration : 3 months+ Charlotte NC 15 + years in IT is needed The IT Architect works under minimal supervision, and collaborates with the business and IT stakeholders to develop a detailed understanding of Environment .

SAP MM@Cupertino, CA

2012-09-05 Thread k5 sancrosoft
*Hi,* * * *This is Girish, - IT Recruiter from SancroSoft USA Inc.* Please respond with updated resume in MS-Word .doc Format with the following details to *gir...@sancrosoftusa.com* * * Full Name : Location : Contact Number : Email : Availability : Visa Status : *SAP MM*

Re: GWT Compilation Time Performance Improvement

2012-09-05 Thread Jens
Be happy that its only 4-6 minutes :)) You can't really speed it up because at the end the amount of source you need to compile to JS is always the same. But you can use a distributed build which could reduce the compilation time to the time of a single permutation if you have enough hosts to

How to obfuscate RequestFactory type name, not only the operations ( GWT 2.4 )

2012-09-05 Thread zz
Hi, I've searched all over the web, but didn't quite get my question answered. How to obfuscate the type name of my request factory interface that extends RequestFactory? I can only see operations on service are obfuscated. For gwt-rpc, it's enabled by adding below to module file. inherit

Re: Accessibility and ruler divs...

2012-09-05 Thread dreak
Issue created - issue 7646 On Monday, September 3, 2012 11:16:55 PM UTC+2, Thomas Broyer wrote: On Monday, September 3, 2012 9:03:56 AM UTC+2, dreak wrote: Hi, I have one small problem... Some widgets contain ruler divs, which looks like this: div style=position: absolute; z-index:

Loading different panels based on roles (user/amdin)

2012-09-05 Thread j3r
I have a docklayout panel as follow north: Header west: MENU center: content When logged, different roles (admin or user) will have a different MENU. Does anyone have a simple say to achieving this. THANKS IN ADVANCED! -- You received this message because you are subscribed to the Google

Re: Need tutorial for GWT and struts integration

2012-09-05 Thread Anitha Rosary
Hi All, To know the entire Struts 1.x, Struts 2 flow, architecture, framework and the way to build a sample web application using Struts, please refer below site: http://tutorial.f2finterview.com/ On Tuesday, March 31, 2009 5:39:13 PM UTC+5:30, mikeds...@gmail.com wrote: If you do a search

Re: gwt-dnd for FlexTable

2012-09-05 Thread Christian
Hey Priya, I have exactly the same question. Did you already found out how to do that or is there anybody who knows if it works in that way and how? Thanks in advance! Christian On Monday, March 16, 2009 7:50:44 AM UTC+1, priya wrote: Hi all, I want to use gwt-dnd library for FlexTable

Re: GWT Mobile App in Same WAR File

2012-09-05 Thread Rob
Hi, Take a look at the MobileWeApp sample in the GWT SDK. In particular, FormFactor.gwt.xml and the MobileWeApp.gwt.xml. - gwt-2.4.0\samples\MobileWebApp\src\main\java\com\google\gwt\sample\mobilewebapp And this post re form factor support:

Re: GWT Compilation Time Performance Improvement

2012-09-05 Thread Niraj Salot
Hi Members, Thanks for all your suggestion/comments. We have already tried below mentioned options to improve the compilation time overall. 1. Memory Settings. -Xmx and Xms 2. localWorkers 3. DraftCompile The question could arise to members mind that why we need to compile a lot

Re: Single images of corner.png/circles.png, etc

2012-09-05 Thread Musicman75
Hello, Thank you for the answer. I know that it's not possible to change the colors with GWT. That's why I need the Single images to change the color with Photoshop/Gimp and put them togehther in an image bundle again. I downloaded the GWT source from SVN, but the single images are not included.

Re: fundamental problems with predictive layout

2012-09-05 Thread Magnus
Hello, thank you for your help! I have got it running now, but I am not happy with it. After trying around with integrating the CSS code provided here into the outer LayoutPanel, I soon found myself traversing discussion groups about HTML/CSS. In these groups, people are also talking about

Re: [gwt-contrib] Remove long-deprecated event listeners and EventPreview. (issue1822803)

2012-09-05 Thread Thomas Broyer
On Tue, Sep 4, 2012 at 11:53 PM, Ray Cromwell cromwell...@google.com wrote: Thomas, thanks for all of the work on this, but we will have to delay this until after we get the open-source git/gerrit repo up and running. No problem (no, really!) Someone had to do it and I was in the mood for it;

[gwt-contrib] Re: SuggestBox causes native events to fire twice (issue1785803)

2012-09-05 Thread tuckerpmt
On 2012/07/19 20:48:12, tbroyer wrote: Can this patch be committed? https://gwt-code-reviews.appspot.com/1785803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors