开发者

How to apply style class for t:commandSortHeader in JSF?

开发者 https://www.devze.com 2022-12-24 16:56 出处:网络
In my application i am using t:commandSortHeader for sorting purpose, i开发者_如何转开发s it possible to change the default arrow thats is shown to some other image using styleClass attributes. If pos

In my application i am using t:commandSortHeader for sorting purpose, i开发者_如何转开发s 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.


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> 
0

精彩评论

暂无评论...
验证码 换一张
取 消