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.
views:
175answers:
1
+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
2010-03-24 15:29:11
thanks its working now
Hari
2010-03-25 15:43:45