未捕获的TypeError:对象0没有方法'toLocaleLowerCase'

时间:2014-03-22 05:52:58

标签: javascript jquery visualforce apex

我在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>

0 个答案:

没有答案