Good Morning,
I Have a recordset that works fine in the SFGrid but does not in SFTreeGrid as shown, I have studied the other posts of treeGrid but culd not have it solved unfortunately
Can U Help Me ?
Tks
|
protected override void OnInitialized()
{
TreeData.Add(new BusinessObject() { LinhaId = 1, DataVenda = "Parent Task 1", ValorVenda = 10, ParentId = null });
TreeData.Add(new BusinessObject() { LinhaId = 2, DataVenda = "Child task 1", ValorVenda = 4, ParentId = 1});
TreeData.Add(new BusinessObject() { LinhaId = 3, DataVenda = "Child Task 2", ValorVenda = 5, ParentId = 2});
. . .
} |
Farveen,
Tks for the reply,
I have already tried
to use the null Value and every time it returns this error
Can U help ?
Tks a lot Farveen,
I used your Example and it began to work fine,
Tks from Brasil !!!