Re: the reverse: creating properties file out of existing Constants/Messages interfaces

2012-02-23 Thread mma
Vlad - Thanks for posing the question. Soon - Thanks for providing the answer. This is a lot better than creating the properties files first and then generating the interfaces. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: multi selection without using Ctrl

2012-01-02 Thread mma
I'm replying to my own post with the solution. class ServiceTypeTableView { public ServiceTypeList () {} DefaultSelectionEventManagerServiceType customManager = DefaultSelectionEventManager.createCustomManager(newEventTranslatorServiceType() { public boolean

multi selection without using Ctrl

2011-12-29 Thread mma
Hi there. I want to implement the following changes regarding the behavior of the MultiSelectionModel: - Each click on a row should select that row and maintain all the previous selected rows - Each click on a selected row should unselect it This sounds very easy but I haven't

Swipe gesture handler

2011-12-15 Thread mma
Hi there. Is there any easy / fast way to implement swipe gesture handling -- similar to iOs UISwipeGestureRecognizerhttp://developer.apple.com/library/ios/documentation/UIKit/Reference/UISwipeGestureRecognizer_Class/Reference/Reference.html#//apple_ref/occ/cl/UISwipeGestureRecognizer ?

exceeding the limit of 255 words on GWT 2.4 but not on 2.3

2011-12-15 Thread mma
Hi there. I get the following error message when compiling UiBinder template in GWT 2.4 but not in 2.3: ERROR] Errors in 'generated://C5AF780801F58242DB0EE69038CD0828/com/racios/appoint/client/widgets/weekcalendar/WeekCalendarDesktop_WeekCalendarDesktopUiBinderImpl.java' [ERROR] Line 16:

Re: exceeding the limit of 255 words on GWT 2.4 but not on 2.3

2011-12-15 Thread mma
Hi Thomas. The template is basically a table representing a 7-day calendar which has: - Different styling for each 0-30 and 30-60 minute slot interval of each hour - Different styling for each odd and even hour row - Different styling for each day column As you can imagine, just

Re: permutation explosion

2011-10-26 Thread mma
Here is an excerpt of console output (when I upload to appengine): Deploying frontend Preparing to deploy: Created staging directory at: '/var/folders/CC/CCXgSiQyGZChKamrrjcK2k+++TI/-Tmp-/appcfg7657467333929685094.tmp' Scanning for jsp files. Scanning files on

Re: permutation explosion

2011-10-25 Thread mma
Hi Thomas. It seems that the deferredjs folder within the war/'module-name' folder takes up 88 MB. Is it normal? The PNGs in war/'module-name' are a only a few with max size of 16 KB. The war/'module-name' has more than 20 html files, each of one larger than 700 KB. Thank you! -- You

Re: permutation explosion

2011-10-25 Thread mma
Thomas, thanks for the advice. I've used set-property name='locale' value='default' / in order to reduce the number of permutations from ~50 to 5. I've learned that I had 50 permutations by looking at the compile report you mentioned. This reduced the war folder size to 86 MB. This will allow

Re: permutation explosion

2011-10-25 Thread mma
For some reason, eclipse is not outputing anything during the compilation. Maybe it's some option that's not set. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: permutation explosion

2011-10-25 Thread mma
I see console messages when uploading to appengine (creating temp folders, uploading files, etc.), but not when compiling GWT. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

permutation explosion

2011-10-24 Thread mma
The problem: - Compiling GWT code without collapse-all-properties / makes the size of the resources so big that it can't be uploaded to Google App Engine - It seems that the total size of the resource files is larger than 450 MB (App Engine allows resource size less than 150 MB)

Re: permutation explosion

2011-10-24 Thread mma
Hi Thomas. Here is summary of the size of the war folder and its subdirectories after compiling without collapse-all-properties/: war/ 492 MB war/'module-name'/ 137 MB war/web-inf/ 352 MB war/web-inf/deploy/ 313 MB war/web-inf/lib/ 33 MB war/web-inf/classes/ 8 MB war/web-inf/deploy accounts

Fast way for email, phone input validation

2011-06-27 Thread mma
Hi there! I'm trying to implement input validation for email and phone fields. I'm struggling with gwt-validation framework. Is there any fast, simple way to do it? Thanks, Best regards -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

image wipe transition

2011-01-29 Thread mma
Hello there. I want to implement an image animation similar to the one seen on http://www.apple.com/ipodtouch/. Is there any easy way to do it in GWT without having to code it all by hand using animations? Do you have any advice? Thanks -- You received this message because you are

Getting ACSID cookie in web mode

2010-09-10 Thread mma
Hi there, I'm implementing an auto-login method for google users, where if a user is already logged in the GWT App won't show the welcome page and will go directly to the page that is relevant for that particular user. If the user is not logged in, the App will show the welcome page and ask to

UiBinder + extending FlexTable

2009-12-15 Thread mma
Hi! I'm currently trying to create a widget that extends FlexTable in way the style of the row and column header cells (row=0 and col=0, respectively) is different from the other (regular) cells. In order to do this, i'm following the approach: - Created TwoAxisFlexTable.java and