FieldSortImageURL Element
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
Returns the URL to the image file that is used to indicate how a column is sorted. Rendering of this field is conditional, based on the current sorting URL that is sent in the request to the server.
<FieldSortImageURL>
</FieldSortImageURL>
Attributes
Attribute |
Description |
---|---|
None |
N/A |
Child Elements
None |
Parent Elements
Numerous |
Occurrences
Minimum: 0 Maximum: Unbounded |
Example
The following example creates an <IMG> tag for the icon that is used to reflect the direction of a sort. The FieldSortImageURL element returns the URL to the image.
<HTML><![CDATA[<IMG SRC="]]></HTML>
<FieldSortImageURL/>
<HTML><![CDATA[" ALT=]]></HTML>
<Switch>
<Expr>
<GetVar Name='SortDir'/>
</Expr>
<Case Value='Asc'>
<HTML>"Sort Ascending"</HTML>
</Case>
<Case Value='Desc'>
<HTML>"Sort Descending"</HTML>
</Case>
<Default>
<HTML>""</HTML>
</Default>
</Switch>
<HTML><![CDATA[ BORDER=0>]]></HTML>