Folks,
Using the following code I am extracting a list of field names from a dictionary tiddler, and retrieving the description
<$list filter="[[fields-dictionary]indexes[]]" variable=fieldname>
<$checkbox field=<<fieldname>> checked="yes" unchecked="no" default="no"> <$text text={{{ [[fields-dictionary]getindex<fieldname>] }}}/></$checkbox><br>
</$list>
A checkbox allows the field to be created and set.
The Question?
As you can see I am not including a sort operator, so I would hope the result would be in the order stored in the fields-dictionary dictionary tiddler, however it is in alphabetical order.
Is there a way to retrieve the data in a data tiddler in is raw order?
Or am I forced to setup a seperate list and use the sortby Operator?
Thanks in advance
Tony