ORDER BY property [message #79680] |
Tue, 02 July 2002 12:39 |
Eric Bender
Messages: 9 Registered: June 2002
|
Junior Member |
|
|
Is there any way to set a block's ORDER BY property to be dynamic? As in if I had a drop down box somewhere and those were the things that would sort the data block by, how would I do this? Thanks!
|
|
|
Re: ORDER BY property [message #79685 is a reply to message #79680] |
Tue, 02 July 2002 22:15 |
Ravi
Messages: 251 Registered: June 1998
|
Senior Member |
|
|
use this statement
set_block_property('BLOCK NAME',order_by,'coloumn name')
But after changing the order by property like thsi you have to re-query the block.
go_block('block name');
execute_query;
let me know if this answers your question
|
|
|
|