Using Updown Column in a descending order
-
- Posts: 13
- Joined: 2012-08-04 16:37
Using Updown Column in a descending order
Hello all, i Often use the move UpDown column but creating the Dynamic List the default order is always ASC so the last record I insert is at the bottom of the list. is it possible to make the default order descending in the Dynamic List? Thank You.
Franz Andreani
-
- Posts: 13
- Joined: 2012-08-04 16:37
Re: Using Updown Column in a descending order
Perhaps is very simple i just added the verb DESC to the default variable declaration
where rceven is the recordset name and ordine is the column name
i hope it'll be helpful
Code: Select all
$tso_listrceven2->setDefault("rceven.ordine DESC");
i hope it'll be helpful
Franz Andreani
Re: Using Updown Column in a descending order
That is one to remember. I was going to use a totally different approach.
Nice one!!
Nice one!!
-
- Posts: 13
- Joined: 2012-08-04 16:37