gwt mvp - Some GWT MVP newbie questions -
I worked with ASP.Net (C #, Classic / MVC), Zengo (Python) and CI (PHP) But I'm totally new to GWT and JSP / servlets, and I've been asked to learn GWT MVP. Therefore, I read a tutorial from Google for GWT-MVP. I downloaded the project contact , which was used in that tutorial. After reading them, I could not understand the whole thing. These are my questions (I have Eclipse-Gallileo and Gwyleti Plugin / SDK installed):
- The translatable code specified as contacts, contacts.gwt.xml file What's in Javascript should be translated into code? what else? Which source tag should I include in it? How are path (attribute) mapped?
- I've found only one static HTML file in the War folder (contacts.html). It has the same name as the name of the project (in the case of the same letter). Is it necessary / rule?
- How do rootpayell know, which will wrap the html file? Is this the configuration? If so, then where?
- If I have multiple HTML files, how will I tell RootPanel to use one of them?
- If I have 2/3 nested master pages (like ASP.Net or Django or CI), how can I include them to make an html?
- Or, there is only one html in a project?
For now, this may be enough, these questions are stupid, but I have no information about GWT-MVP. thank you in advanced.
- Translatable code will be translated into javascript. You must include everything from the customer side. So if you have some object to transfer the data from the server to the customer and you think that in a package named "Share" you can contact a
& lt; Source path = 'shared' / & gt;
will add the .gwt.xml file. - It should not be a name similar to the project, if you want to change it, then you should call it war / web-f / web Xml file needs to be modified (in
& lt; welcome-file-list & gt;
tag) - In GWT you basically only have one html file and Can change widget associated with rootphen If you want to change html check 2
- Check 6
- Check 6
- Yes
Comments
Post a Comment