The application contains LongListSelector which shows master items (100-300 elements). When clicked on an item, then it expands and shows details items (100 elements) - which are placed inside nested LongListSelector.
(LongListSelector from Silverlight Toolkit for Windows Phone - August release.)
The problems are:
- Performance - expanding details list takes a few seconds which is not acceptable - probably it generates UI controls for all items which is obviously very bad idea
- Unable to scroll details items (scrolling master items works OK)
- Not working ElementBinding to LayoutRoot.DataContext from LongListSelector.ItemsTemplate
When switching to plain old ItemsControl points 2,3 are solved but still performance problem exist.
Can anybody suggest me any solution or suggestion how these problems can be solved? Thanks!