Declined
Last Updated: 23 Mar 2016 15:20 by ADMIN
ADMIN
Vera
Created on: 04 Feb 2014 15:38
Category: TileList
Type: Bug Report
2
TileGroup header remains when the only tile in the group is collapsed
If there is only one tile in a group and its Visibility property is set to Collapsed, the group header does not disappear.
1 comment
ADMIN
Maya
Posted on: 23 Mar 2016 15:19
This behavior is expected and can be reproduced with any other control with groups with items. For example ListBox with groups will leave its Group's Header even when all of its children are collapsed.

If a user wants to hide the group, he/she should work with the Items collection and add/remove items from it. For example:
          this.tileList.Groups[1].Items.RemoveAt(0);
where there is only one item.

The group will not be rendered as it does not have any items.