本文整理汇总了TypeScript中ag-grid/main.AgCheckbox.setSelected方法的典型用法代码示例。如果您正苦于以下问题:TypeScript AgCheckbox.setSelected方法的具体用法?TypeScript AgCheckbox.setSelected怎么用?TypeScript AgCheckbox.setSelected使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ag-grid/main.AgCheckbox
的用法示例。
在下文中一共展示了AgCheckbox.setSelected方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: init
@PostConstruct
private init(): void {
this.setTemplate(this.createTemplate());
this.instantiate(this.context);
this.cbPivotMode.setSelected(this.columnController.isPivotMode());
this.addDestroyableEventListener(this.cbPivotMode, AgCheckbox.EVENT_CHANGED, this.onBtPivotMode.bind(this) );
this.addDestroyableEventListener(this.eventService, Events.EVENT_COLUMN_EVERYTHING_CHANGED, this.onPivotModeChanged.bind(this));
this.addDestroyableEventListener(this.eventService, Events.EVENT_COLUMN_PIVOT_MODE_CHANGED, this.onPivotModeChanged.bind(this));
}
示例2: onPivotModeChanged
private onPivotModeChanged(): void {
var pivotModeActive = this.columnController.isPivotMode();
this.cbPivotMode.setSelected(pivotModeActive);
}