FieldSortImageURL Element

Applies to: SharePoint Foundation 2010

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>

See Also

Reference

FieldFilterImageURL Element

FieldSortParams Element (View)