OnClickSort Method
The OnClickSort method sorts a column. It uses the following syntax:
OnClickSort(name, direction);
where:
name identifies the name of the control that Siebel Open UI sorts.
direction is one of the following values:
asc. Sort the control in ascending order.
desc. Sort the control in descending order.
For example, the following code sorts the my_accounts control in descending order:
bReturn = this.GetProxy().OnClickSort(my_accounts, desc);