bootstrap-table接合abp

将ui-grid 换成了bootstrap-table,

在abp中如此结合

 1 function ajaxRequest(params) {
 2     console.log(params.data);
 3     roleService.getRoles({}).success(function (result) {
 4 
 5     params.success({
 6         total: result.totalCount,
 7         rows: result.items
 8         });
 9     });
10 }    
1 vm.bsTableControl = {
2                 options: {
3                     data: vm.roles,
4                     //rowStyle: function (row, index) {
5                     //    return { classes: 'none' };
6                     //},
7                     ajax: ajaxRequest
8 .....其它参数略
9 };

在app.js中

var app = angular.module('app', ['bsTable']....

以上代码在role下面的index.js中修改.

html代码

<table bs-table-control="vm.bsTableControl"></table>

 

posted @ 2017-05-15 15:31  forhells  阅读(324)  评论(1编辑  收藏  举报