Hi,
I have an issue relating to this previous post of mine.
https://ko.infragistics.com/community/forums/f/retired-products-and-controls/39320/prism-regionmanager-does-not-contain-regions-when-regions-are-inside-xamwebtileview
In that previous post I had a shell.xaml in the bootstrapper containing a tile view and a region within each of the tile panes into which I injected a view. After following the suggestions in the above post it worked fine.
However, I have now have a situation where this shell.xaml has now been moved into the module project itself and is itself injected into the a page with the bootstrapper. This again results in the region manager not containing the regions within the tile panes.
Heres a link to a VS2008 solution on my skydrive that produces the issue.
http://cid-40cdcffc2cc592a9.office.live.com/self.aspx/.Public/JeremyLikness.zip
There are two modules, Home and Bio, that are exactly the same other than one has a tileview on its view. The PRISM assemblies in the solution include the fix from the above post.
It's based on a solution downloaded from this page.
http://csharperimage.jeremylikness.com/2009/11/dynamic-module-loading-with-silverlight.html
Again, it maybe something in PRISM that's causing the issue but If you could have a look and suggest any changes to the PRISM source code that could enable me to use your excellent tile view in this way, or anything else, It would be most appreciated.
Thanks again
Kevin
Hi Kevin,Just follow point 2 from my answer here: https://ko.infragistics.com/community/forums/f/retired-products-and-controls/39320/prism-regionmanager-does-not-contain-regions-when-regions-are-inside-xamwebtileview/224079#224079
To do this you need to modify the Bio.xaml:Move the tile definition from TileView to the parent grid - this will allow RegionManager logic to work:<igTileView:XamWebTileView x:Name="tileView1" RowsInPage="2" ColumnsInPage="2"/><igTileView:TilePane Loaded="TilePane_Loaded"> <Grid Regions:RegionManager.RegionName="SalesRegion"/></igTileView:TilePane>Regards,Marin
That's fantastic! Nice one Marinii!