Tagged Questions

3
votes
1answer
673 views

Request-scoped beans and datamodel initialization?

UPDATE II: OK, I managed to narrow it down a little. I have a page with a datatable with sorting and filtering functionalities, both taking place in the DB. In other words, I do not use the embedded ...
2
votes
2answers
728 views

JSF skips phases - How to debug that?

I have to debug a foreign jsf application thanks god. The problem is, that I submit a form, but the values aren't carried over. With a phase listener I can see, that the life cycle doesn't run ...
0
votes
1answer
371 views

how to distinguish a jsf action or direct url link invoked the page

I have a situation, I have a session bean with list, this list I show in html data table. When the user hits the url from browser or normal href, I have to show all records. There is provision to ...
0
votes
2answers
126 views

Phases skipped when using PrettyFaces (JSF)

When using PrettyFaces to map a page containing a form, all phases after Restore View are skipped and the response is rendered. Thus the form is not submitted and the model is not updated.
0
votes
1answer
856 views

JSF - Update model in invoke application phase

in my JSF application i need to update ui component during invoke application phase. Can it be done? Here's the code i've produced so far: public void resetDataScroller(ActionEvent actionEvent) { ...