How to organize a gae + gwt project into modules

2010-10-27 Thread vehdra music
Hi, i would like to know if someone can recommends me a tutorial to organize my project, or if can explain me how can i do it. In my project i need this modules: a) Core (entities classes + daos) b) Backend (gwt module where the users can admin their app data, the user must be logued) c) Widgets

Re: How to organize a gae + gwt project into modules

2010-10-28 Thread vehdra music
Noone has any idea? How do you organize your projects? Can someone give me an idea? On 27 oct, 17:33, vehdra music veh...@gmail.com wrote: Hi, i would like to know if someone can recommends me a tutorial to organize my project, or if can explain me how can i do it. In my project i need

Doubt about Places and Activities

2010-11-08 Thread vehdra music
Hi, i would like to implement the new GWT 2.1 MVP Framework, but i have a few doubts. In my gui i have a TabPanel and inside each tab i have few links that display another view in the tab panel container. Something like Google Code, for example: http://code.google.com/p/gwt-platform/ For

Places and URL

2010-11-15 Thread vehdra music
I'm trying to learn how to use GWT 2.1 MVP framework. I maded 2 places, for example: public class MyProfile extends Place { public static class Tokenizer implements PlaceTokenizerMyProfile { public MyProfile getPlace(String token) { return new

Cross site and GWT call window.parent

2011-01-11 Thread vehdra music
I'm creating a widget that I want to allow other users insert in their webpages. I already have my gwt code. But when i try to call my gwt compiled code from another domain I get a js error. Is there anyway to do something like facebook does with xd_receiver.html? Is there anything already

Where to store global (application) variables?

2011-05-04 Thread vehdra music
In my application I need to store in somewhere a variable user where I want to store the session user data. Should I do something like this: http://stackoverflow.com/questions/3559461/gwtjava-globals-singletons-and-headaches Or should I use GIN and should I do something like this? public class

Re: Where to store global (application) variables?

2011-05-04 Thread vehdra music
I am really newby to GIN. I was reading this GIN tutorial ( http://code.google.com/p/google-gin/wiki/GinTutorial ). But I can´t figure how can I use to store global data, and how can I get that data from any class of my application, for example a x Activity. Do you know any good tutorial of

Doubt about using ValueListBox + UIBinder + Editors Framework

2011-07-19 Thread vehdra music
Hi, I have two beans: public class User implements IsSerializable { ... private companyId; // fk to companies ... } and: public class Company implements IsSerializable { ... private Long id; private String name; ... } This is my UI Code: g:ValueListBox ui:field=companyId/g:ValueListBox And

Calling an inherited module RPC (using GIN)

2011-07-28 Thread vehdra music
Hi, I am using Gin in my project. In my activity I have this code: private MyServiceAsync rpcService; @Inject public MyListActivity(MyListView view, PlaceController placeController, MyServiceAsync rpcService) { this.view = view;

GWT + GAE pom?

2011-08-05 Thread vehdra music
Hi, I hope this post well not be off topic because is related to GAE GWT. I want to create a GWT + GAE project using maven, but I am pulling my hairs of my head. I hope that someone can give me little hand with this :) I am following this steps: 1) mvn archetype:generate

Doubt about MVP multiple areas.

2011-08-20 Thread vehdra music
I need to have a layout like this. +--+ || +--+ | Users | Name[] | | Pages|Lastname [] | |

MVP + GIN + Storing User Data in client Code?

2011-08-28 Thread vehdra music
Hi, have a few doubts about using mvp + gin. One thing that I want to do is this. I want that when my app loads (in the entry point) load the logged user data and display one or another gui (one for the root users and other for the normal users). Obviously in the server I check if the user has

MVP framework(s) doubt

2011-11-26 Thread vehdra music
I am creating a GWT application using GWT MVP as described here ( http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html ) only that instead of ClientFactory I am using Gin. I started nice, but now that I have many entities with List Edit views, activities and places,

GWT MVP Multiple Areas Doubt

2011-12-03 Thread vehdra music
In my app I have layout like gmail. A header, a left panel (with a menu), a main content area (with a header and a content area). Example: --- |username logout|

Re: MVP framework(s) doubt

2011-12-03 Thread vehdra music
Sorry about the delay :) The main issue that I am having is in Eclipse, something when I make a change (little change) and I reload my app in Firefox I get this on the console: java.lang.OutOfMemoryError: PermGen space [ERROR] Out of memory; to increase the amount of memory, use the - Xmx

Re: GWT MVP Multiple Areas Doubt

2011-12-04 Thread vehdra music
On Dec 3, 9:53 pm, Thomas Broyer t.bro...@gmail.com wrote: If your 3 parts are tightly linked (you have different actions and different filters for each different main content), given that they're displayed next to each other, then you only need one activity. I'd however try to code them as

Best MVP framework right now?

2012-09-06 Thread vehdra music
Hi, already know about gwtp, mvp4g, guit, GWT MVP, etc. But I have been some time outside from GWT world :( so now I am returning to this beatiful framework again and I would to know which have been your experiences, wich mvp framework do you recommend to use in this days? Best regards. --

Re: Best MVP framework right now?

2012-09-07 Thread vehdra music
the boilerplate code. El viernes, 7 de septiembre de 2012 03:21:55 UTC-3, Thomas Broyer escribió: On Friday, September 7, 2012 5:12:49 AM UTC+2, vehdra music wrote: Hi, already know about gwtp, mvp4g, guit, GWT MVP, etc. But I have been some time outside from GWT world :( so now I am

GWT Bean Validation doubts

2012-10-18 Thread vehdra music
Hi. I am trying to use GWT Bean Validation but I can't find in the docs wich ones are the supported annotations in client side and server side. For example I've tried to use @Email and it seems doesn't work. So I would like to know if there some list of supported annotations. On the other

How to make ValueBoxEditorDecorator error message positionate to the right?

2012-10-18 Thread vehdra music
I would like to get [ text box ] Error message. But I am getting this: Error message [ text box ] This is my ui.xml: tr tdui:msg description=EmailEmail/ui:msg/td td e:ValueBoxEditorDecorator ui:field=email e:valuebox g:TextBox styleName={resources.style.editField}/