aspose file tools
The moose likes JSF and the fly likes CommandLink in Subview Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "CommandLink in Subview" Watch "CommandLink in Subview" New topic
Author

CommandLink in Subview

Raj Maheshwari
Ranch Hand

Joined: Jul 02, 2004
Posts: 34
Hi

Is there a restriction on having something like:


<h:form id="Logout_FORM">

<h:commandLink action="#{loggedUsers.logout}" value="Logout1" id="register_submit1" />

</h:form>

Inside a <f:subview> in a file like Header.jsp

This file then gets included in home.jsp as :

<f:verbatim>

<%@include file="/Header.jsp"%>

</f:verbatim >

My problem is that this never works. If I have the former code (commandlink) copy pasted directly in home.jsp it works. But including it does not. Why is that?


Thanks

Raj
Sergey Smirnov
Ranch Hand

Joined: May 29, 2003
Posts: 167
Your subj says about subview, but the code snippet contains f:verbatim. So, what the tag you have problem with? If you ask about f:verbatim, you should not put any control elements, such as command link. f:verbatim is a transient component. it means it and its subtree does not stored in the component tree.

--
Sergey : https://ajax4jsf.dev.java.net/
Raj Maheshwari
Ranch Hand

Joined: Jul 02, 2004
Posts: 34
Sergey
Thanks for the reply.

As I mentioned, the <f:verbatim> has a include which includes a file called Header.jsp. My Header.jsp has the <f:subview> (and the f:subview contains the h:commandLink).

So will that work? I even tried to not wrap the include statement inside the f:verbatim and that did not do the trick for me.

Thanks,
Raj
Raj Maheshwari
Ranch Hand

Joined: Jul 02, 2004
Posts: 34
Ok mybad. It works. I just had to redeploy.

Thanks
-raj
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: CommandLink in Subview
 
Similar Threads
verbatim tag
working with t:commandNavigation2
Navigation Problem
jsp:include in JSF JSP
Form Being Rendered Outside of the Page