I am using struts2 jqGrid. I have enabled navigatorSearch="true"
. So It shows the search button. I want to add a text to the button saying Search
I read it here that I need to add the searchtext
attribute to add custom text. But I dont know where to add this attribute. I tried adding it in navigatorSearchOptions
but it failed. This is my (partial)grid code :
<sjg:grid
..
navigator="true"
navigatorView="false"
navigatorDelete="false"
navigatorAdd="false"
navigatorEdit="false"
navigatorSearch="true"
navigatorSearchOptions="{sopt:['eq' ,'cn']}"
>
How do I add text to search & reload buttons?? Thanks In Advance.