我对农业网格很陌生,正在对其进行评估。
我的项目数据具有多个查询表(例如,一个Foo有一个Bar类别,一个Baz品牌和一个Boo类),我希望能够在ag-grid中进行编辑。不幸的是,这些查找表不在我的控制范围内,而且我并不总是具有顺序ID。
示例:
Foo有一个班级
类可以是以下之一:
我无法控制ID或值。
因此,如果我放入agSelectCellEditor,我可以以某种方式告诉它显示值,但收集ID吗?
其他人对我如何收集课程,品牌等有更好的主意吗?
ETA:
从ag-grid网站(https://www.ag-grid.com/javascript-grid-cell-editing/#agselectcelleditor-agpopupselectcelleditor):
colDef.cellEditor = 'agSelectCellEditor';
colDef.cellEditorParams = {
values: ['English', 'Spanish', 'French', 'Portuguese', '(other)']
}
这是我尝试过的方法,但是我在这里无法获取ID。也许其他人有一个更好的主意或之前已经实现过。
感谢您对农业网格菜鸟的帮助。
答案 0 :(得分:1)
您可以通过创建自定义单元格编辑器来做到这一点。
组件:
drop.down.editor.ts
import {AfterViewInit, Component, ViewChild, ViewContainerRef} from "@angular/core";
import {ICellEditorAngularComp} from "ag-grid-angular";
@Component({
selector: 'dropdown-cell-editor',
templateUrl: "drop.down.editor.html"
})
export class DropDownEditor implements ICellEditorAngularComp, AfterViewInit {
private params: any;
public value: number;
private options: any;
@ViewChild('input', {read: ViewContainerRef}) public input;
agInit(params: any): void {
this.params = params;
this.value = this.params.value;
this.options = params.options;
}
getValue(): any {
return this.value;
}
ngAfterViewInit() {
window.setTimeout(() => {
this.input.element.nativeElement.focus();
})
}
}
drop.down.editor.html
<select #input [(ngModel)]="value">
<option *ngFor="let item of options" value="{{item.value}}">{{item.name}}</option>
</select>
然后添加模块声明
@NgModule({
imports: [ ... , AgGridModule.withComponents( [DropDownEditor]) ],
declarations: [ ..., DropDownEditor ]
})
然后在列定义中使用它
{
headerName: "Drop down",
field: "dropdown",
cellEditorFramework: DropDownEditor,
editable: true,
cellEditorParams: {
options: [{
name: "First Option",
value: 1
},
{
name: "Second Option",
value: 2
}
]
}
}
完整示例here