我试图从列表中获取数据并使用jQuery对其进行排序但是为此我在控制台上收到此错误。
无法读取属性' mData'在控制台上未定义。
如果我添加静态数据,它就可以了。我是jQuery的新手。
VF页面
<apex:page sidebar="false" controller="PaginationCon">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.9/js/jquery.dataTables.min.js"></script>
<link href="https://cdn.datatables.net/1.10.9/css/jquery.dataTables.min.css" rel="stylesheet"/>
<script type="text/javascript">
$(function () {
$("#example1").dataTable();
});
</script>
<apex:form >
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>Name</th>
<th>BodyLength</th>
<th>Created Date</th>
<th>Owner Name</th>
<th>Click To View</th>
</tr>
</thead>
<tbody>
<apex:repeat value="{!att}" var="at">
<tr>
<td> <apex:outputText value="{!at.Name}"/></td>
<td> <apex:outputText value="{!at.BodyLength}"/></td>
<td> <apex:outputText value="{!at.CreatedDate}"/></td>
<td> <apex:outputText value="{!at.Owner.Name}"/></td>
<td> <apex:commandLink value="View"/></td>
<td> <apex:commandLink value="Delete"/></td>
</tr>
</apex:repeat>
</tbody>
</table>
</apex:form>
</apex:page>
控制器
public with sharing class PaginationCon {
public List<Attachment> att{get;set;}
public PaginationCon ()
{
att=new List<Attachment>();
att=[select id,Name,BodyLength,CreatedDate,Owner.Name from Attachment limit 1000];
}
}
答案 0 :(得分:1)
只需在“点击查看”表格标题下面添加此元素
<th>Click To Delete</th>
现在应该是这样。
<thead>
<tr>
<th>Name</th>
<th>BodyLength</th>
<th>Created Date</th>
<th>Owner Name</th>
<th>Click To View</th>
<th>Click To Delete</th>
</tr>
</thead>
<thead>
和<tbody>
应具有相同的列数。