Tagged Questions
1
vote
1answer
3k views
Conditionally render JSF h:panelGrid based on presence of query string (or no query string at all)
I'm trying to dynamically render some composition/templates based on the presence of a query string or the absence of a query string. For example:
localhost:9080/myWonderfulApp/test.xhtml?foo=bar
...
1
vote
1answer
561 views
JSF Managed Bean method call using URL parameters
I have a Session Scoped managed bean that backs my web-app. In this web-app I would like to have the ability for the user to execute a URL containing a user id and a date. This will then trigger a ...
0
votes
0answers
360 views
URL-parameter-based navigation using Spring Webflow
as far as you probably know 99.9% of e-shops need their products to be indexed by search engines. I don't know any way to have indexed site except using URL parameters. Now I'm writing the e-shop with ...
0
votes
2answers
409 views
Managedbean could not be created Error While passing parameters on URL
I'm trying to pass parameters on URL but I get Managed bean "Cant instantiate class:" error.
Code is Here:
create url:
<h:outputLink id="link"
...
4
votes
1answer
5k views
get GET parameters in JSF's managed bean
Can someone tell me how to catch parameters passed from URI in JSF's managed bean?
I have a navigation menu all nodes of which link to some navigation case. And i have two similar items there: ...