0
我想動態添加一個新的列在ui-grid
已經出現在頁面上。爲此,我使用下面的代碼到columnDefs
陣列中添加對象:動態列添加角度ui網格,但列值不顯示
$scope.$on('SHOW_PROPERTY_SHEET_COLUMNS', (event, propertyObj:any) => {
//this.selectDetailsPropertyColumn(propertyObj);
let newColumn = {};
let selProp = propertyObj.selectedProperty;
let columnsLength = vm.gridApi.grid.options.columnDefs.length;
let fieldName = `regular[0].${selProp.name}`;
console.log('fieldName', fieldName);
newColumn = {
displayName: selProp.displayName,
name: selProp.name,
field: selProp.name,
width: 100,
hidden:0,
cellTemplate: propertyCellTpl(selProp.name),
visible: true,
enableColumnResizing: true
};
gridApi.grid.options.columnDefs.splice(parseInt(columnsLength-1), 0, newColumn);
vm.summaryColumns.push(newColumn);
vm.gridApi.grid.refresh();
});
而對於cellTemplate我們使用的是以下功能:
function propertyCellTpl(field){
console.log('propertyCellTpl', field);
return {{row.entity.regular[0].${field}}}>;
}
以上代碼添加新的列完美到電網但沒有顯示各自列的值。任何人都可以幫忙解決我面臨的這個問題。
感謝回答布賴恩,我試圖代碼如你所說,但它仍然顯示空白列和調試的螢火,它看起來它不使用cellTemplate –
像元素,如果你只是做什麼'cellTemplate:「 testdata「'? – Brian
是的,我嘗試過,但爲此也沒有顯示新添加的列的值。 –