Hi All,
Does the Form Tree Control support the multi-select option?
We noticed that there is a 'Single select' property at the control level, which we have set to 'No'. After this change, we are able to multi-select records using Ctrl + Click. Additionally, when using treecontrol.getSelectedCount(), it correctly returns the number of selected records.
However, when iterating through the selected records, the loop executes only once instead of iterating through all selected records. Below is the code snippet we are using:
TreeItemIdx idx = treecontrol.getFirstSelected();
while (idx)
{
idx = treecontrol.getNextSelected(idx); ---- (This step always returns idx as '0')
}
We also observed similar behaviour in the Costing Sheet form (Cost Management → Indirect Cost Accounting Policies Setup → Costing Sheets). The standard logic appears to allow multi-selecting tree nodes and deleting them, but in the UI, only the first selected record gets deleted.
Could someone please clarify if this is a known limitation in Tree Control, or if there are any additional configurations or workarounds available to fully support multi-selection?