1

In my application i am using t:commandSortHeader for sorting purpose, is it possible to change the default arrow thats is shown to some other image using styleClass attributes. If possible how to do that. Kindly help.

Hariharbalaji
  • 2,498
  • 8
  • 36
  • 51

1 Answers1

3

not sure but did you try like this

 <t:commandSortHeader arrow="false" ... >
 <f:facet name="ascending">  
 <t:graphicImage url="asc.png" />  
</facet> 
 <f:facet name="descending">
 <t:graphicImage url="desc.png"/> 
 </facet> 
Inv3r53
  • 2,929
  • 3
  • 25
  • 37
  • This is great one! May I know how did you get the `facet` reference? Beside ascending and descending, is there any other facet available? – huahsin68 Sep 07 '12 at 08:28