I submitted a bug report, but thought I'd post this here too in case anyone else is having this problem.
The issue is only with build 2009.1.311.
If you try to iterate through the nodes of your treeview to determine the checked nodes text &/or value, this functionality has broken since the previous builds.
I.E. This code used to work:
The issue is only with build 2009.1.311.
If you try to iterate through the nodes of your treeview to determine the checked nodes text &/or value, this functionality has broken since the previous builds.
I.E. This code used to work:
string selected = ""; |
foreach (RadTreeNode node in RadTreeView1.CheckedNodes) |
{ |
if ((node.Checked == true) && (node.CheckState != TreeNodeCheckState.Indeterminate)) |
{ |
selected += node.Text + ","; |
} |
} |
RadTreeView1.CheckedNodes would properly return the number of checked nodes. In 2009.1.311 however this always returns 0 therefore it will never run the code to determine what is checked.
The only solution for the moment is to revert back to a previous build.