Hi i have created a listgrid and would like all fields to be unsortable, how would i go about this. Here is my listgrid code:
<b:treeGrid dataSource="myData" openQuery="@open" width="100%" height="100%" rowClasses="rowClass1, rowClass2">
<b:treeGridCol select="fix_num" label="Fixture num" width="90px" readonly="true" />
<b:treeGridCol select="team_name" width="180px" tree="true" readonly="true">
<b:label>Team</b:label>
</b:treeGridCol>
<b:treeGridCol select="competition" width="260px" tree="true" readonly="true">
<b:label>Competition</b:label>
</b:treeGridCol>
<b:treeGridCol select="location" label="Location" id="genre-column1" width="90px" readonly="true">
<b:fieldEditor>
<select>
<option value="" />
<option value="home">Home</option>
<option value="away">Away</option>
</select>
</b:fieldEditor>
</b:treeGridCol>
<b:treeGridCol select="date" label="Fixure Date" width="110px" readonly="true" />
<b:treeGridCol select="result" label="Result" width="120px" readonly="true" />
</b:treeGrid>
<b:treeGridCol select="fix_num" label="Fixture num" width="90px" readonly="true" />
<b:treeGridCol select="team_name" width="180px" tree="true" readonly="true">
<b:label>Team</b:label>
</b:treeGridCol>
<b:treeGridCol select="competition" width="260px" tree="true" readonly="true">
<b:label>Competition</b:label>
</b:treeGridCol>
<b:treeGridCol select="location" label="Location" id="genre-column1" width="90px" readonly="true">
<b:fieldEditor>
<select>
<option value="" />
<option value="home">Home</option>
<option value="away">Away</option>
</select>
</b:fieldEditor>
</b:treeGridCol>
<b:treeGridCol select="date" label="Fixure Date" width="110px" readonly="true" />
<b:treeGridCol select="result" label="Result" width="120px" readonly="true" />
</b:treeGrid>
kelly

Unsortable treeGrid
15 April, 2008 - 09:55 — andysHi Kelly,
There is an attribute named "sortable" in the treeGrid widget.
It enables us to decide whether the treeGrid is sortable or not.
You can find this information in backbase reference.chm under the "treeGridBase"
Hope that helps,
Andys