DataTables.net如何使用多个数据源?

时间:2015-05-27 09:44:19

标签: jquery datatables jquery-datatables datatables-1.10

我使用了作曲家" http://datatables.net/"。 使用我的数据表,我使用ajax请求从serverSide获取数据。但我有一个其他数据源用于一个单元格(" List Role"),它使用另一个ajax源。

如何将此来源用于单元格(&#34;列出角色&#34;)以及如何显示&#34; <selec...><option..>&#34;对于&#34; ListRole&#34;?

的单元格

我的代码示例:

<table id="gridrole" class="display" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th>Nom</th>
            <th>Login</th>
            <th>Email</th>
            <th>Role Current</th>
            <th>List Role</th>

        </tr>
    </thead>

    <tfoot>
        <tr>
            <th>Nom</th>
            <th>Login</th>
            <th>Email</th>
            <th>Role Current</th>
            <th>List Role</th>

        </tr>
    </tfoot>
</table>
$('#gridrole').dataTable({
        "processing": true,
        "serverSide": true,
        "ajax": {
            "url": "/Role/ReadRole/",
            "dataType": "json"
        },

        columns: [
            { "data": "UserName" },
            { "data": "Login" },
            { "data": "Email" },
            { "data": "RoleName" },
            {
                "data": "ListRole"
            }

        ],

    });

更新

示例列表角色:

[{"Id":"1","Name":"Admin"},{"Id":"2","Name":"Test"}]

1 个答案:

答案 0 :(得分:2)

我假设您的dataTables初始化的其他方面运作良好,第一个数据源的项目看起来像

{
  "UserName": "test",
  "Login": "qwerty",
  "Email": "b@test.com",
  "RoleName": "Test",
  "ListRole": 2
 }

等,listrole数据源看起来像

[{"Id":"1","Name":"Admin"},{"Id":"2","Name":"Test"}]

等。然后,我建议你只阅读一次listrole数据源,并创建一个jQuery对象,其中包含一个<select><option ..</select>实例,其中包含listrole IdName

var $select = $('<select></select>');

$.getJSON('listrole.json', function(json) {
  for (var i=0;i<json.length;i++) {
     $select.append('<option value="'+json[i].Id+'">'+json[i].Name+'</option>')
  }
});

然后在columns中返回克隆的$select(或实际上是其HTML),其中选择了与第一个数据源中<option>的值对应的ListRole

columns: [
   ...
   { data: "ListRole",
     render: function(data, type, row, meta) {
        var $clone = $select.clone();
        $clone.find('option[value="'+data+'"]').attr('selected', 'selected');
        return $clone.wrap('<div></div>').parent().html();
      }
   }
]

制作了上述演示 - &gt;的 http://plnkr.co/edit/JW15Iblkz6rVSod3YWXw?p=preview