Hi, before today the default behavior for wicket Trees was that all nodes were expanded by default. This caused problems with lazily initialized modes (e.g. file system model or JSR model) where wicket attempted to load the entire data during tree render.
So I changed the default behavior to have all nodes collapsed. If you want to have all nodes expanded, just call tree.getTreeState.expandAll() on your tree. -Matej --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
