本文整理汇总了TypeScript中ag-grid/main.GridOptionsWrapper.isFunctionsPassive方法的典型用法代码示例。如果您正苦于以下问题:TypeScript GridOptionsWrapper.isFunctionsPassive方法的具体用法?TypeScript GridOptionsWrapper.isFunctionsPassive怎么用?TypeScript GridOptionsWrapper.isFunctionsPassive使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ag-grid/main.GridOptionsWrapper
的用法示例。
在下文中一共展示了GridOptionsWrapper.isFunctionsPassive方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: addColumns
protected addColumns(columns: Column[]) {
if (this.gridOptionsWrapper.isFunctionsPassive()) {
this.eventService.dispatchEvent(Events.EVENT_COLUMN_VALUE_ADD_REQUEST, {columns: columns} );
} else {
this.columnController.addValueColumns(columns);
}
}
示例2: removeColumns
protected removeColumns(columns: Column[]): void {
if (this.gridOptionsWrapper.isFunctionsPassive()) {
this.eventService.dispatchEvent(Events.EVENT_COLUMN_PIVOT_REMOVE_REQUEST, {columns: columns} );
} else {
var columnsPivoted = Utils.filter(columns, (column: Column) => column.isPivotActive() );
this.columnController.removePivotColumns(columnsPivoted);
}
}
示例3: removeColumns
protected removeColumns(columns: Column[]): void {
if (this.gridOptionsWrapper.isFunctionsPassive()) {
this.eventService.dispatchEvent(Events.EVENT_COLUMN_VALUE_REMOVE_REQUEST, {columns: columns} );
} else {
var columnsCurrentlyValueColumns = Utils.filter(columns, (column: Column) => column.isValueActive() );
this.columnController.removeValueColumns(columnsCurrentlyValueColumns);
}
}
示例4: removeColumns
protected removeColumns(columns:Column[]) {
if (this.gridOptionsWrapper.isFunctionsPassive()) {
this.eventService.dispatchEvent(Events.EVENT_COLUMN_ROW_GROUP_REMOVE_REQUEST, {columns: columns});
} else {
// this panel only allows dragging columns (not column groups) so we are guaranteed
// the dragItem is a column
var rowGroupColumns = this.columnController.getRowGroupColumns();
columns.forEach(column => {
var columnIsGrouped = rowGroupColumns.indexOf(column) >= 0;
if (columnIsGrouped) {
this.columnController.removeRowGroupColumn(column);
this.columnController.setColumnVisible(column, true);
}
});
}
}