I have the following code in my JSP that uses Struts2 Now my requirement is to have the headerValue as Pending always in the dropdown box and it should be non-editable
<td>
<s:select headerValue="Select" headerKey="" list="#{'Cleared':'Cleared','Exception':'Exception','Pending':'Pending'}" cssClass="select50" id="titleStatus%{#product.productId}">
<s:param name="name">newContractTitles[<%=counter%>].titleStatus</s:param>
<s:param name="value"><s:property value="titleStatus"/></s:param>
</s:select>
</td>
Please suggest.