小编kim*_*014的帖子

ag-grid表的选择复选框

我希望使用以下选项选择ag-grid的选项:但是没有看到左侧的复选框.知道还有什么需要设置才能使选择复选框工作.

self.appliancesInGroupGridOpts = {
        angularCompileRows: true,
        enableColResize : true,
        rowData: null,
        checkboxSelection: true,
        enableSorting: true,
        columnDefs: [
          {
            valueGetter: 'data.name',
            headerName: $filter('translate')('APPLIANCE.NAME'),
            suppressSizeToFit : true,
            template: '<span class="appliance-name">{{data.name}}</span>',
            checkboxSelection: true,
            width: 200
          } ,
           {
            valueGetter: 'data.updated',
            headerName: $filter('translate')('APPLIANCE_GROUP.PUBLISH.MODIFICATION_TIME'),
            suppressSizeToFit : true,
            template: '<span class="appliance-updated">{{data.updated}}</span>',
            checkboxSelection: true,
            width: 200
          } 
        ] ,
Run Code Online (Sandbox Code Playgroud)

ag-grid

3
推荐指数
1
解决办法
2万
查看次数

标签 统计

ag-grid ×1