Re: [tobago] Seam integration

2008-01-21 Thread Zied Hamdi
Hi Bernd, Did I understand the issue? is it to fix compatibilty of Tobago with other jsf implementations like rich faces? Regards, Zied 2008/1/18, Bernd Bohmann [EMAIL PROTECTED]: Hello Zied, I think tobago should compatible with seam or a other webbeans implementation. The own ViewHandler

t:saveState and redirect

2008-01-21 Thread Sertic Mirko, Bedag
Hi all! I've got a question regarding t:saveState and request scope session beans. Is it possible to use t:saveState in combination with a redirect/ navigation rule? Are there any things I have to take care of? Thanks a lot Mirko

AW: t:saveState and redirect

2008-01-21 Thread Sertic Mirko, Bedag
Thanks a lot. Does the RedirectTracker track it's state in the HttpSession object? What do I have to do if I don't want to use any HttpSession in combination with ClientState saving due to load balancer issues? Regards Mirko -Ursprüngliche Nachricht- Von: David Delbecq [mailto:[EMAIL

[Trinidad] PPR error with XHTML JSPs

2008-01-21 Thread Mathias Walter
Hi, I'm using XHTML inside JSPs. If I include the XML processing instruction ?xml version=1.0 encoding=iso-8859-1? at the top of the page, partial triggers won't work. Firebug displays: Invalid PPR response. The response-headers were:\nServer: Apache-Coyote/1.1\nX-Powered-By: JSF/1.2\nCon...

Re: AW: t:saveState and redirect

2008-01-21 Thread Simon Kitching
Yes, RedirectTracker uses the server-side session. The combination of no-server-side-state, redirects and t:saveState is not possible. A redirect is by definition just a GET command. And there is no way to encode the state of anything in the query params of a GET command; they are just too

Re: [Trinidad] signature of method for selectionListener on a tree

2008-01-21 Thread Daniel Niklas
Hi Matthias, Matthias Wessendorf-4 wrote: public vod nodeSelected(org.apache.myfaces.trinidad.event.SelectionEvent event); is this not working? I think this is not working, my method is not called. Here my example: tr:tree id=personTree value=#{treeBean2.treeModel} var=node

Re: [Trinidad] problem with tr:panelPopup containing an iframe

2008-01-21 Thread Renzo Tomaselli
The double request produced by FF is due to the DOM change in TrPanelPopup._calcPosition, where the popup is assigned to the enclosing form in spite of its current parent, usually a span. It appears that in such case FF refreshes the contents of the popup-contained iframes/objects, requesting

Re: [Trinidad] signature of method for selectionListener on a tree

2008-01-21 Thread Richard Yee
I think your nodeSelected method should return a String. I am using a tr:navigationTree with commandLinks that have an actionListener and it is working fine. public String handleSelect(ActionEvent evt) { } On Jan 21, 2008 2:55 AM, Daniel Niklas [EMAIL PROTECTED] wrote: Hi Matthias,

[Trinidad] tr:table skinning

2008-01-21 Thread Ravindra Adireddy
Hi all How to highlight the column header with some color and which is sortable and currently sorted in ascending order or descending order. i am trying in following manner which is not working af|column::sortable-header-text th:active{ background-color:#797979;

Re: IllegalStateException caused by ExtensionsFilter during stresstests

2008-01-21 Thread Bjørn T Johansen
I tried setting param-nameorg.apache.myfaces.CHECK_EXTENSIONS_FILTER/param-name param-valuefalse/param-value But I am still getting those exceptions... What am I missing? BTJ On Wed, 19 Dec 2007 20:42:39 +0100 simon [EMAIL PROTECTED] wrote: On Wed, 2007-12-19 at 07:21 -0700, Michael

Trinidad + Facelets + Tomahawk Tree2

2008-01-21 Thread Wolf Benz
Hi List, I use this combination: MF 1.2.1 SNAPSHOT - Trinidad 1.2.5 + latest Tomahawk + Facelets. For my page templating, I do as explained here: http://wiki.apache.org/myfaces/StreamingAddResource, html xmlns // all the namespace declarations f:view t:document t:documentHead titlethe

Re: [Tobago] Bug in 1.0.15 snapshot with datepicker

2008-01-21 Thread Helmut Swaczinna
Bug fixed. Patch is attached. Regards Helmut - Original Message - From: Helmut Swaczinna [EMAIL PROTECTED] To: MyFaces Discussion users@myfaces.apache.org Sent: Monday, January 21, 2008 2:54 PM Subject: [Tobago] Bug in 1.0.15 snapshot with datepicker Hi, when there is more than

AW: Trinidad + Facelets + Tomahawk Tree2

2008-01-21 Thread Rottstock, Sven
Have you defined Tomahawk as your default namespace in your navigation menu? Or why is the namespace prefix missing for tree2? Cheers Sven -Ursprüngliche Nachricht- Von: Wolf Benz [mailto:[EMAIL PROTECTED] Gesendet: Montag, 21. Januar 2008 14:30 An: MyFaces Discussion Betreff:

Re: Trinidad + Facelets + Tomahawk Tree2

2008-01-21 Thread Wolf Benz
Good observation Sven - but no, I didn't forget. HTML is my default namespace, I just forgot to copy the t:tree2 Toma prefix in the question. Sorry about that. (Eclipse would have complained if that were the error!) -Wolf On Jan 21, 2008 3:57 PM, Rottstock, Sven [EMAIL PROTECTED] wrote: Have

Re: [Trinidad] PPR error with XHTML JSPs

2008-01-21 Thread Matthias Wessendorf
Hi, I think we had that issue already discussed here on the list. Can you do the following: -create a jira -with some simple JSP (+XHTML) code inside. Since I see the X-Powered-By: JSF/1.2 http header, my guess is, that you are on Trinidad 1.2.x. But what is the x ? :-) Thanks! Matthias On Jan

Re: [Trinidad] signature of method for selectionListener on a tree

2008-01-21 Thread Matthias Wessendorf
Hrm, public void nodeSelectedEvent(SelectionEvent event) { System.out.println(--- node selected.); } I checked our internal stuff (based on Trinidad), and it works. lemme check Trinidad again. best regards Daniel -- View this message in context:

Re: Reg:Html code not working with .jspx page

2008-01-21 Thread Andrew Robinson
This is not a dev question, please use the users list for all user questions. Could you tell us what is not working? Please look at the generated source and let us know what is wrong. It could be that you are using jspx, which is XML, but you javascript is not valid XML. In xhtml pages with

Re: [Trinidad] signature of method for selectionListener on a tree

2008-01-21 Thread Gerhard Petracek
hello daniel, few month ago i had a look at the internals of tr:tree and tr:treeTable - if i remember correctly: selectionListeners just work in connection with the rowSelection attribute - e.g. see [1], [2]. however, tr:tree doesn't provide this attribute. i know that the tag-doc indicates a

Re: [Trinidad] signature of method for selectionListener on a tree

2008-01-21 Thread Daniel Niklas
Hi Gerhard, Gerhard Petracek wrote: - if i remember correctly: selectionListeners just work in connection with the rowSelection attribute - e.g. see [1], [2]. however, tr:tree doesn't provide this attribute. i know that the tag-doc indicates a different behaviour. Ok, then it is a

Re: [Trinidad] signature of method for selectionListener on a tree

2008-01-21 Thread Matthias Wessendorf
Hi, yes the selectionListener isn't working on tree. What works is the rowDisclosureListener, when toggle the tree. Currently there is no real way to select a node in the tree. Like selecting a note on your native file-explorer. -Matthias On Jan 21, 2008 9:03 AM, Daniel Niklas [EMAIL

RE: [Trinidad] PPR error with XHTML JSPs

2008-01-21 Thread Mathias Walter
Hi Matthias, I think we had that issue already discussed here on the list. Can you do the following: -create a jira Done: https://issues.apache.org/jira/browse/TRINIDAD-912 -with some simple JSP (+XHTML) code inside. Since I see the X-Powered-By: JSF/1.2 http header, my guess is, that

Re: [Trinidad] PPR error with XHTML JSPs

2008-01-21 Thread Matthias Wessendorf
Invalid PPR response. The response-headers were:\nServer: Apache-Coyote/1.1\nX-Powered-By: JSF/1.2\nCon... this, from the header. The RI has a context-parameter for disabling this. Thanks for the issue; I'll take a look. -Matthias and the PPR result is: ?xml version=1.0

Re: [Trinidad] PPR error with XHTML JSPs

2008-01-21 Thread Matthias Wessendorf
after removing ?xml version=1.0 encoding=ISO-8859-1 ? works On Jan 21, 2008 1:50 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: Invalid PPR response. The response-headers were:\nServer: Apache-Coyote/1.1\nX-Powered-By: JSF/1.2\nCon... this, from the header. The RI has a

Initial try of moving RichFaces app from WebLogic 9.2.2 to Tomcat 5.5 with MyFaces

2008-01-21 Thread Karr, David
I have a simple app using the default JSF 1.1 implementation in WebLogic 9.2.2, which also uses RichFaces 3.1.3. It works at this point. I installed Tomcat 5.5.25. I copied all the jars from the MyFaces 1.1.5 lib directory to the /shared/lib directory of Tomcat. I copied the

Re: Initial try of moving RichFaces app from WebLogic 9.2.2 to Tomcat 5.5 with MyFaces

2008-01-21 Thread Matthias Wessendorf
On Jan 21, 2008 4:43 PM, Karr, David [EMAIL PROTECTED] wrote: I have a simple app using the default JSF 1.1 implementation in WebLogic 9.2.2, which also uses RichFaces 3.1.3. It works at this point. I installed Tomcat 5.5.25. I copied all the jars from the MyFaces 1.1.5 lib directory to the

RE: Initial try of moving RichFaces app from WebLogic 9.2.2 to Tomcat 5.5 with MyFaces

2008-01-21 Thread Karr, David
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthias Wessendorf Sent: Monday, January 21, 2008 4:56 PM To: MyFaces Discussion Subject: Re: Initial try of moving RichFaces app from WebLogic 9.2.2 to Tomcat 5.5 with MyFaces On Jan 21, 2008

Re: Initial try of moving RichFaces app from WebLogic 9.2.2 to Tomcat 5.5 with MyFaces

2008-01-21 Thread Matthias Wessendorf
does your shared now have myfaces115 AND! myfaces116 ? I'd go with only one of them... -M On Jan 21, 2008 7:54 PM, Karr, David [EMAIL PROTECTED] wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthias Wessendorf Sent: Monday, January

RE: Initial try of moving RichFaces app from WebLogic 9.2.2 to Tomcat 5.5 with MyFaces

2008-01-21 Thread Karr, David
My shared/lib directory is empty. My WEB-INF/lib has the MyFaces 1.1.5 jars, but the example webapps have 1.1.6 in their names. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthias Wessendorf Sent: Monday, January 21, 2008 7:57 PM To: MyFaces

Re: Initial try of moving RichFaces app from WebLogic 9.2.2 to Tomcat 5.5 with MyFaces

2008-01-21 Thread Matthias Wessendorf
ok, from your previous mails I had the impression, that even deploying the myfaces-examples in a fresh tomcat cause issues. which is usually not the case. so, you move your RichFaces app to Tomcat, with MyFaces. Questions: -Do you have all dependencies for MyFaces? -Did you add anything else ?

RE: [Trinidad] PPR error with XHTML JSPs

2008-01-21 Thread Mathias Walter
Hi, after removing ?xml version=1.0 encoding=ISO-8859-1 ? works Yes. I wrote it with other words. -- Regards, Mathias On Jan 21, 2008 1:50 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: Invalid PPR response. The response-headers were:\nServer:

RE: Initial try of moving RichFaces app from WebLogic 9.2.2 to Tomcat 5.5 with MyFaces

2008-01-21 Thread Karr, David
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On ok, from your previous mails I had the impression, that even deploying the myfaces-examples in a fresh tomcat cause issues. which is usually not the case. so, you move your RichFaces app to Tomcat, with

action link in custom component (inside a portlet)

2008-01-21 Thread Martin Goldhahn
Hi! I need to render some text containing links i a JSF component. I cannot render a full commandLink element, since the data comes from a content management system and the contract allows me to only modify the href attribute of the anker element. The whole thing runs under Liferay, a portlet

Which suggestion input field component?

2008-01-21 Thread Marko Asplund
Hi, I need to add an input text field with suggestion capabilities to an existing JSF 1.1 application. Which component would you recommend using? The Sandbox s:inputSuggest would seem like a good fit but I have some concerns about using Sandbox due to it's experimental status. The number of