When we use jsf ri and tomahawk, our jsf app works well for browser back button. But after we use Trinidad, browser back button does not work. Consider the following senario: 1. show a table of employees (backing bean data is a list of employees) 2. click an employee A and show the employee,(backing bean data is now changed to the employee) 3. click browser back button 4. click an employee B. Employee B will not be shown because the backing data has been changed to employee A in stop 2. I looked the generated HTML viewState values in the steps above. They are the same. That means that only the same view(stored view tree in server side) is used. For jsf/tomahawk, I believe different view trees are used for the senario above and thus back button works. Is there a config parameter for trinidad to support back button? Back button is often used by users, it is nice if we can do that with Trinidad. Thanks, Dave

