Declined
Last Updated: 08 Feb 2016 07:38 by ADMIN
ADMIN
Dimitrina
Created on: 16 Oct 2013 06:02
Category: TreeListView
Type: Bug Report
3
TreeListView with 700 columns does not display grid lines
If you define 700 columns, then the horizontal lines are missing:
for (int i = 0; i < 700; i++)
{
      var nameCol = new GridViewDataColumn() { DataMemberBinding = new Binding("Name") };
      this.radTreeListView.Columns.Add(nameCol);
}
1 comment
ADMIN
Ivan Ivanov
Posted on: 08 Feb 2016 07:38
The issue is related to a framework limitation of Silverlight. Silverlight's layout mechanism does not support size measurements that are greater than a fixed max value.