Hi
It is possible add SeparatorNode at runtime to filled Grid working in DataBound Mode?
My example:
SeparatorNode sep = new SeparatorNode("Sample");
object[] d = new object[] { "a", "b", "c" } ;
Node n = new Node(d);
sep.Items.Add(n);
table.Rows.Items.Add(sep);
I have no error or exception but table.Rows.Items.Count afer add SeparatorNode not grow, and I can't see new node.
The same sample in unbound mode work great.
Please help
Robert