01.private void BuildUserGroup() {02. 03. group = new TileGroup();04. //group.Name = "Personal";05. group.Title = "Personal";06. 07. BuildDashboard();08. group.Tiles.Add(kpiTile);09. BuildMyCompetencies();10. group.Tiles.Add(kpiTile);11. BuildTranscript();12. group.Tiles.Add(tile);13. BuildCatalog();14. group.Tiles.Add(tile); 15. BuildIDP();16. group.Tiles.Add(tile);17. 18. rtlTJA.Groups.Add(group);19. }Above is a snippet of code I use in the code behind to create groups and tiles dynamically. It works great without referencing the Title property (image #1). When I un-comment it above, the tiles disappear (image #2).
I am using version 2016.1.113.35.
