t:selectManyMenu does not have size attribute

2009-08-27 Thread Dave
 t:selectManyMenu does not have size attribute, and it is set to 1   select  multiple=multiple size=1 class=aaa   Thanks, Dave

[Announce] Release of Apache MyFaces Trinidad 1.2.12

2009-08-27 Thread Matthias Wessendorf
The Apache MyFaces Trinidad team is pleased to announce the release of Apache MyFaces Trinidad Core 1.2.12. Apache MyFaces Trinidad is a JavaServer(tm) Faces 1.2 component library. Trinidad Core 1.2.12 is available in both binary and source distributions: *

rich:modalPanel

2009-08-27 Thread mitroiasi
Hi, In my application I use in several places the rich:modalPanel. It is very usefull but, for me, it is annoying that whne the panel opens the rest of the window is grayed out. Is there a possibility to show the background window in a normal way? -- View this message in context:

[Tobago] Tobago with Struts2

2009-08-27 Thread Kamlesh Koringa
Hi I am new to Tobago and JSF. Can I use Tobago as view part and Struts2 (action) as Controller and model part instead of JSF? Is there any demo application link available. Please help Thanks -- Kamlesh Koringa

exception using handleNavigation(...)

2009-08-27 Thread Georg Füchsle
Hallo, in Order to redirect to another page during Restore-View-Phase I call: FacesContext fc = event.getFacesContext(); fc.getApplication().getNavigationHandler().handleNavigation(fc, , mnfmrecherche); There is the navigation-rule in my faces-config.xml:

Re: [Tobago] Tobago with Struts2

2009-08-27 Thread Marcus Kröger
Hi Kamlesh Koringa there is a JSF integration available for the Struts2 Framework but I don't think that it would work with Tobago out of the box. At least I wouldn't recommend to use Tobago with Struts2. A demo application is available on the Tobago's project site at

Re: [Tobago] Tobago with Struts2

2009-08-27 Thread Matthias Wessendorf
On Thu, Aug 27, 2009 at 4:39 PM, Marcus Krögermarcus.kroe...@googlemail.com wrote: Hi Kamlesh Koringa there is a JSF integration available for the Struts2 Framework but I don't think that it would work with Tobago out of the box. At least I wouldn't recommend to use Tobago with Struts2. why

Re: rich:modalPanel

2009-08-27 Thread Kito Mann
Hello mitroiasi, You should probably ask this question on the RichFaces forums. --- Kito D. Mann -- Author, JavaServer Faces in Action http://twitter.com/kito99 http://twitter.com/jsfcentral JSF 2 Seminar Oct 6tth: http://www.regonline.com/jsf2seminar JSF Summit Conference Dec 1st-4th in

Re: value in SessionScope ist lost after a redirect on Safari

2009-08-27 Thread Werner Punz
You could issue a navigation via the navigation handler. But generally I dont thin you should loose the session on a redirect. This is standard servlet stuff. Do you change domains in between or do you change from https to http? Werner Georg Füchsle schrieb: Hallo! For starting my

Re: value in SessionScope ist lost after a redirect on Safari

2009-08-27 Thread Jan-Kees van Andel
In most cases, redirecting to a different application on the same server also leads to loss of session data, since the two applications don't share session state (they do share the same session ID, but not the same state). But I can't come up with a reason why it only happens in Safari...