Multiple pages

2010-12-14 Thread daniela iervolino
Hi! I'm in trouble with this topic.. I have a list of users and a page with a TabPanel to manage them. In a TabPanel's bar I manage one user. The problem is that when I click on a bar the page remains the same, instead I want that it changes. I think I should use the Hyperlink but I have some

Re: Multiple Pages

2010-10-14 Thread Elienan
On Oct 13, 9:36 am, Thomas Broyer t.bro...@gmail.com wrote: On 13 oct, 09:21, Elienan elie...@gmail.com wrote: form.addSubmitCompleteHandler(new FormPanel.SubmitCompleteHandler() {                                         @Override                                         public void

Re: Multiple Pages

2010-10-13 Thread Elienan
On Oct 11, 5:46 pm, Thomas Broyer t.bro...@gmail.com wrote: On 10 oct, 19:38, Elienan elie...@gmail.com wrote: Hi all, I'm new at GWT, trying to develop my first application with this tool. I already read a lot about multiple pages, and I followed the most common suggestion of have

Re: Multiple Pages

2010-10-13 Thread Thomas Broyer
On 13 oct, 09:21, Elienan elie...@gmail.com wrote: form.addSubmitCompleteHandler(new FormPanel.SubmitCompleteHandler() {                                         @Override                                         public void onSubmitComplete(SubmitCompleteEvent event) {                      

Multiple Pages

2010-10-11 Thread Elienan
Hi all, I'm new at GWT, trying to develop my first application with this tool. I already read a lot about multiple pages, and I followed the most common suggestion of have only one page, and then change pannels to change pages. I want to develop a set of pages that allow the users to go back

Re: Multiple Pages

2010-10-11 Thread Thomas Broyer
On 10 oct, 19:38, Elienan elie...@gmail.com wrote: Hi all, I'm new at GWT, trying to develop my first application with this tool. I already read a lot about multiple pages, and I followed the most common suggestion of have only one page, and then change pannels to change pages. I want

Re: multiple pages

2010-06-27 Thread Ahmed Shoeib
of page does no more fit. This is different to a set of hyperlinked documents. What do you mean with Multiple Pages? a) Multiple entry points. Means different start sequences? Yes, this is possible b) Exchanges the whole application (layout) ? Yes, this is possible c) Something else

multiple pages

2010-06-20 Thread Ahmed Shoeib
can i make multiple pages in GWT it is one have its own onModuleLoad() can i do 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-tool...@googlegroups.com. To unsubscribe from

Re: multiple pages

2010-06-20 Thread Stefan Bachert
Hi Ahmed, with GWT you build a rich internet application. The concept of page does no more fit. This is different to a set of hyperlinked documents. What do you mean with Multiple Pages? a) Multiple entry points. Means different start sequences? Yes, this is possible b) Exchanges the whole

Re: GWT project with multiple pages

2010-06-18 Thread Brian Reilly
Reilly brian.irei...@gmail.com wrote: This is a technique that I'm finding useful for using GWT to implement new features in an existing web application. With multiple pages you will lose the gui state of the GWT- application. Multipages will have poor user timing problems and latencies

Re: GWT project with multiple pages

2010-06-17 Thread Stefan Bachert
Hi, On Jun 16, 3:14 pm, Brian Reilly brian.irei...@gmail.com wrote: This is a technique that I'm finding useful for using GWT to implement new features in an existing web application. With multiple pages you will lose the gui state of the GWT- application. Multipages will have poor user timing

Re: GWT project with multiple pages

2010-06-16 Thread Brian Reilly
This is a technique that I'm finding useful for using GWT to implement new features in an existing web application. The application already has a configuration-driven menu system that effectively resolves to a separate HTML file for each page. If I want to use GWT to implement new pages, I need to

Re: GWT project with multiple pages

2010-06-15 Thread Stefan Bachert
Hi, could you please tell what the benefit of multiple host pages should be? To me it still looks like a misconception because of still sticking with concepts of pre-AJAX era. Stefan Bachert http://gwtworld.de On Jun 13, 1:33 am, Mark mark.java.john...@gmail.com wrote: Hi, There is now a

GWT project with multiple pages

2010-06-14 Thread Mark
Hi, There is now a project on Google Code (http://code.google.com/p/gwt- multipage/) for managing multiple host pages. And, tutorials here - http://claudiushauptmann.com/ and here - http://uptick.com.au/content/managing-multiple-host-pages. Cheers Mark -- You received this message because you

Re: GWT web application with multiple pages

2010-01-31 Thread 4F2E4A2E
thank you very much for your post. that was my first thought, but the problem is that i do need the ControlPage to control the ShowUpRoomPage after loading the ShowUpRoomPage... here my dumb solution: - 2 modules with uibinder - indexModule controls the dataModel and set it - showUpModule check

Re: GWT web application with multiple pages

2010-01-28 Thread darkflame
or 3rd screen with few fileds and readonly fileds. How can I have multiple pages and navigation between the pages in GWT web application? Do i need to create multiple entry points? Regards, Priya -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT web application with multiple pages

2010-01-28 Thread 4F2E4A2E
you i need something like: - loginpage control page open a showupRoom (tab or new window for the fullscreen monitor or beamer) - crontrol page: set what have to be shown on the showupPage. - showupRoom: show whatever is have been set in the control page. And that should be possible for every

Re: GWT web application with multiple pages

2010-01-28 Thread erha
You can easily do this. You can do the following: 1. Create LogonPage.java class (here you create the Logon Page UI, you can extends one of the GWT Panel Widget) 2. Create ControlPage.java class (here you again create the UI but for Control Page, again extends one of the GWT Panel Widget) 3.

GWT web application with multiple pages

2010-01-27 Thread priya
fileds. How can I have multiple pages and navigation between the pages in GWT web application? Do i need to create multiple entry points? Regards, Priya -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

multiple pages, single module, different urls

2009-08-05 Thread davis
Hi, I've read the posts here: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/7ea87cb9ffa30954/7e951b48eca06f4a?lnk=gstq=login#7e951b48eca06f4a and here:

Re: Multiple pages question

2009-07-30 Thread Maarten Decat
relating multiple pages. For example, let's suppose an application with users where you have an application page, a login page and a register page. Using GWT for the application page speaks for itself, but what about the other pages? I've read the other topics about this problem

Re: Multiple pages question

2009-07-30 Thread alex.d
easily arrange to get spidered by search engines. Ian http://examples.roughian.com 2009/7/29 maarten.de...@gmail.com maarten.de...@gmail.com Hi, I've been trying out GWT for a couple of weeks now and stumbled upon a beginner's question relating multiple pages

Re: Multiple pages question

2009-07-30 Thread Ian Bambury
://examples.roughian.com 2009/7/29 maarten.de...@gmail.com maarten.de...@gmail.com Hi, I've been trying out GWT for a couple of weeks now and stumbled upon a beginner's question relating multiple pages. For example, let's suppose an application with users where you have

Multiple pages question

2009-07-29 Thread maarten.de...@gmail.com
Hi, I've been trying out GWT for a couple of weeks now and stumbled upon a beginner's question relating multiple pages. For example, let's suppose an application with users where you have an application page, a login page and a register page. Using GWT for the application page speaks for itself

Re: Multiple pages question

2009-07-29 Thread Trevis
question relating multiple pages. For example, let's suppose an application with users where you have an application page, a login page and a register page. Using GWT for the application page speaks for itself, but what about the other pages? I've read the other topics about this problem

Re: Multiple pages question

2009-07-29 Thread Ian Bambury
a beginner's question relating multiple pages. For example, let's suppose an application with users where you have an application page, a login page and a register page. Using GWT for the application page speaks for itself, but what about the other pages? I've read the other topics about

Re: Multiple pages question

2009-07-29 Thread Maarten Decat
...@gmail.com Hi, I've been trying out GWT for a couple of weeks now and stumbled upon a beginner's question relating multiple pages. For example, let's suppose an application with users where you have an application page, a login page and a register page. Using GWT for the application

Re: Multiple pages question

2009-07-29 Thread Ian Bambury
easily arrange to get spidered by search engines. Ian http://examples.roughian.com 2009/7/29 maarten.de...@gmail.com maarten.de...@gmail.com Hi, I've been trying out GWT for a couple of weeks now and stumbled upon a beginner's question relating multiple pages

Re: GWT (Multiple Pages Implementation)

2009-05-03 Thread X
Aye; using multiple modules in your project isn't necessary until it grows beyond a hundred K or so... You don't need more than one project, but that project can contain as many modules in as many packages as you like. Separating your various pieces into independent packages help the gwt

Re: GWT (Multiple Pages Implementation)

2009-05-01 Thread Jamie
Well, if you have a single GWT project, then every page will download the complete javascript file, which still contains the code for every page. However, in my experience, it is safe to make separate GWT projects (definitely using my own 'library' module of common components), and merge the

Re: GWT (Multiple Pages Implementation)

2009-04-30 Thread Jamie
The first question I have is, Do the pages need to talk to each other at all? I have found that a single GWT project with many (eg.,) tabs can definitely be a performance problem. As well, this does not lend itself to 'plugin' support where you want to add or remove pages based on (for example

Re: GWT (Multiple Pages Implementation)

2009-04-30 Thread X
I'll second Jamie's reply; The best way to make a a fast, lightweight multi-page GWT application is to have a skeleton splash page which will do a little bit of UI to trick the user into thinking that the whole site is loaded {read: DeckPanel's that load iframes via the Frame object}; meanwhile,

GWT (Multiple Pages Implementation)

2009-04-29 Thread Vince
Hello, I just started out with GWT and currently building a prototype that is intended as an enterprise skeleton application. The intent is to use GWT with Struts 2.0 (via a plugin). I now have the basic structure of the application and I have 3 simple pages that are facilitated by DeckPanels.

Re: GWT project with multiple pages

2009-03-13 Thread Magius
applications, but for various reasons (including CMS), I would like to have a GWT application with multiple pages. What is the best way to do this? I have thought to have a GWT module for each page, but wonder if it is practical? Grateful for your answers

Re: GWT project with multiple pages

2009-03-13 Thread Vitali Lovich
compilation (4 minutes). - Only 1 copy of static contents (images, etc). On Mar 12, 9:47 am, zep zeljk...@hotmail.com wrote: Hello! My question is perhaps not so relevant for Ajax applications, but for various reasons (including CMS), I would like to have a GWT application with multiple

Re: GWT project with multiple pages

2009-03-13 Thread Magius
). On Mar 12, 9:47 am, zep zeljk...@hotmail.com wrote: Hello! My question is perhaps not so relevant for Ajax applications, but for various reasons (including CMS), I would like to have a GWT application with multiple pages. What is the best way to do this? I have thought to have

Re: GWT project with multiple pages

2009-03-13 Thread Vitali Lovich
), I would like to have a GWT application with multiple pages. What is the best way to do this? I have thought to have a GWT module for each page, but wonder if it is practical? Grateful for your answers! --~--~-~--~~~---~--~~ You received this message

GWT project with multiple pages

2009-03-12 Thread zep
Hello! My question is perhaps not so relevant for Ajax applications, but for various reasons (including CMS), I would like to have a GWT application with multiple pages. What is the best way to do this? I have thought to have a GWT module for each page, but wonder if it is practical? Grateful

Re: Multiple pages with entry points

2008-10-21 Thread mon3y
Hi I would go with one html page that points to your entry point. Then just import your page 2 widgets. On Oct 21, 11:06 am, Michi_de [EMAIL PROTECTED] wrote: Hi, is there any way to create an application like this for example: page1.html - i implement my gwt application with div id=

Multiple pages with entry points

2008-10-21 Thread Michi_de
Hi, is there any way to create an application like this for example: page1.html - i implement my gwt application with div id= tag. page1.html - it also contains following code: script type=text/javascript language=javascript src=extGWTformular.Formular.nocache.js/script in my gwt.xml there is