Tree2 value loaded twice during page load

2006-10-09 Thread Michal Glowacki
HiI've got a tree2 component with backing bean set as value in jsp. What I discovered is that it's loaded twice during page load. I believe it has rather something to do with jsp than with myfaces but Can anyone help?This is the fragment of jsp:"#{remote_data$RemoteMatchlists.categoryTre

Re: Tree2 value loaded twice during page load

2006-10-09 Thread Andrew Robinson
Do not create new classes in a get property method. EL expressions are often evaluated more than once. This is often do to other phases, checking the rendered property, etc. Load your tree model when the page is loaded and not in the getter method. Either that or create a request-scope attribute