would be very useful to have the command lnbSort and lnbSortByValue for multicolumned Listboxes, like the Commands lbSort and lbSortByValue for a standard Listbox.
Description
Description
Details
Details
- Legacy ID
- 98173453
- Severity
- None
- Resolution
- Open
- Reproducibility
- N/A
- Category
- Feature Request
Event Timeline
Comment Actions
This should be easily added.. with a return variable on lbsort..
example:
_array = ["One","Two","Three"];
{
lbAdd [1500,_x];
} foreach _array;
_display = findDisplay 734234;
_ctrl = _display displayctrl 1500;
_order = lbSort _ctrl; //_order will be [1,3,2];
///////////*
Now I can use _order to sort other listboxes or controls
*///////////