Problem with TableSorter plugin in case of Text input fields in the table.
I am using the TableSorter jquery by Christian Bash in my application where the table tds have text input in there inner HTML. The sorting does not works on the text inputs. A code sample for my table td is as follows:
<td>
<input type="text" id="oprd<%=counter%>" name="oprd<%=counter%>"
<%if(nList!=null && nList.get(cnt)!=null){%>value="<%=nList.get(cnt).getO_PRD()%>" <%}else{%>value="" <%}%> style="width:50px;" />
</td>
Please help!