我在visualforce页面中使用JQuery表分类器。有时在排序时我在控制台中收到此错误并且排序不起作用。
我使用第一列(数字)对表进行排序,此字段的类型为Number
function sort() {
$("#steptable").tablesorter();
$("#steptable").tablesorter({sortList: [[0,0]], textExtraction: sortByInputValue} );
});
<table id="steptable" class="tablesorter">
<a href="#" onclick="sort();return false;">Sort</a><br/>
<apex:repeat value="{!salesSteps}" var="step">
<tr>
<td><apex:inputField value="{!step.No__c}" /></td>
<td><apex:inputField value="{!step.item__c}"/></td>
</tr>
</apex:repeat>
</table>