Page MenuHomeFeedback Tracker

lnbSort and lnbSortByValue for multicolumned Listboxes
New, WishlistPublic

Description

would be very useful to have the command lnbSort and lnbSortByValue for multicolumned Listboxes, like the Commands lbSort and lbSortByValue for a standard Listbox.

Details

Legacy ID
98173453
Severity
None
Resolution
Open
Reproducibility
N/A
Category
Feature Request

Event Timeline

A3D edited Steps To Reproduce. (Show Details)Sep 25 2014, 3:59 AM
A3D edited Additional Information. (Show Details)
A3D set Category to Feature Request.
A3D set Reproducibility to N/A.
A3D set Severity to None.
A3D set Resolution to Open.
A3D set Legacy ID to 98173453.May 7 2016, 7:29 PM

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
*
///////////