0
votes
1answer
41 views

Efficient way to expose generated files in the server?

I'm working on an application running on JBoss5.1, JEE5, JSF2, Spring3.0, Icefaces2.0, HTML and Jquery1.8. I have a requirement of generating files on the fly for customers to download. When a file is ...
0
votes
1answer
345 views

How can I truncate string in JSF?

How can I truncate string in JSF2 ?Say I have a really long name and I only want to display 5 characters how can I do that? I know I use backing bean what any better options.
2
votes
1answer
340 views

Can not find getFlash() method in Myfaces

FacesContext.getCurrentInstance().getExternalContext().getFlash() I am trying to use above code seems like getFlash() does not exist in JSF2 implementation of Myfaces. How how can I access it. ...
1
vote
1answer
105 views

How can I improve this design that calls third party methods from JSF based front end

I want opinions and expert advice on design . I am developing an application using JSF2 and EJB3 and I am not using CDI. I have been given an API (jar) from an other team and there are three main ...
0
votes
1answer
2k views

How to call several methods with JSF <f:ajax listener?

Good Afternoon, I have a search page that uses ajax to render a several datatables without refreshing the page. It is mandatory for me to call a Method as a Listener for each table. Below is the ...
3
votes
1answer
4k views

Navigate to the Same Page After Action in JSF 2

I have a component done in JSF 1.x, this component has a command button as follows <h:commandButton ... action="#{templateController.next}" /> Where templateController was passed as an EL ...