Hi experts,
I have ComboBox with CheckBox items. In such a case multiple items can be selected. However, the top part of the ComboBox where the selected items should appear displays only one. Another problem with it is that even if no items are selected it shows the first item. The last problem I noticed is that if I click on one if the checkboxes (without checking it), the selected item display line displays it even though I only clicked it without checking it.
Am I doing something wrong? I it is a known issue, is there a workaround?
Thanks,
Avi
| <telerik:radgrid id="radgDocuments"> |
| <ClientSettings> |
| <DataBinding SelectMethod="GetLatestReportsTable" Location="~/Services/Reporting/OnDemandLatest.svc" SortParameterType="Linq" FilterParameterType="Linq"> |
| </DataBinding> |
| </ClientSettings> |
| <MasterTableView HierarchyLoadMode="Client" DataKeyNames="ReportSourceID" ClientDataKeyNames="ReportSourceID">..... etc |
| 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.