smartgwt power 3.1
I have a sort-of multi-window application: i.e. there are multiple distinct contexts each with is own UI.
Which is the best practice in this scenario?
1) Hard coded html menu pointing to different html pages each hosting a smartwt app?
2) Smartgwt generated menu (should I simply output HTMLFlow() objects to compose a:
[html]
<ul>
<li>...</li>
</ul>
[/html]
or is there a better solution?) and a huge EntryPoint derived class to handle the context switch.
Thank you.
I have a sort-of multi-window application: i.e. there are multiple distinct contexts each with is own UI.
Which is the best practice in this scenario?
1) Hard coded html menu pointing to different html pages each hosting a smartwt app?
2) Smartgwt generated menu (should I simply output HTMLFlow() objects to compose a:
[html]
<ul>
<li>...</li>
</ul>
[/html]
or is there a better solution?) and a huge EntryPoint derived class to handle the context switch.
Thank you.
Comment