views:

175

answers:

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.

+2  A: 

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> 
daedlus
thanks its working now
Hari