JSF: CommandLink not working with dataTable and ajax?

Put the bean in the view scope. @ManagedBean @ViewScoped public class MovieBean { // ... } And ensure that you don't do any business logic in the getters. So they should all look like this public List getMovies() { return movies; } Yes, just a return propertyName; and nothing more.

If you need to, do it somewhere else. Both will ensure that the list of movies is exactly the same during the form submit request as it was during the request which displayed the list. This way JSF can find the commandlink responsible for the action and execute it accordingly.

See also: JSF ignores action attribute.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions