I have a hierarchical webgrid that allows paging and sorting on both bands.
How to change the black arrwo that apeears when column is clicked to sort?
How to underline only few column headers in a particular band?
The SortAscendingImage and SortDescendingImage are off the DisplayLayout.Images object.
Hi Darrell,
I am still awaiting for -
Can you explain how we can off the default sorting images using SortAscendingImage and SortDescendingImage of DisplayLayout.Images object.
Raju,
Use the below snippet in your DisplayLayout to change the sort images
<Images>
<SortAscendingImage Url="../Images/sortAsc.gif" />
<SortDescendingImage Url="../Images/sortDec.gif" />
</Images>
If you dont want sorting then use SortIndicator="Disabled" on your column.
If you want sorting but dont want any image, then I guess you can't do that but as an alternative use the above snippet with a dummy image probably of 1*1 pixel size with transparent color.
Hope this helps you.
Hi sureshdeevi,
Thanks for reply.
My requirement is " sorting but dont want any image".
I have done the same thing and display a dummy transparent image with 7*4 pixel but it always takes dimension 12 * 12 pixel.
As a consequence it leaves much space between Header text and filter icon.
Is there anyway to reduce the default Image size of 12 * 12 px to 1 * 1 pixel...
Thanks.