我有一个 ColumnDef:
relatedToolsColumns: ColumnDef[] = [
{ field: 'toolId', name: 'Tool Number', type: 'dropdown', optionsList: this.tools, optionsListField: 'id', optionsListName: 'toolNo', width: '70%' },
{
field: 'delete', name: 'Delete', type: 'icon-button', width: '30%', sortingDisabled: true, icon: 'delete',
callback: this.deleteRelatedTool.bind(this)
}];
我正在使用端点调用“getGageNoList”订阅这些工具:
ngOnInit() {
this.tool = this.data.tool;
this.readonly = this.data.readonly;
this.tprecmApiService.getGageNoList()
.subscribe((val) => {
this.tools = val;
this.relatedToolsColumns
.find((column: ColumnDef) => column.field === 'toolId')
.optionsList = this.tools;
});
}
这就是我所拥有的工具: 工具数组
这就是我在工具显示的 UI 中所拥有的,当前从下拉列表中选择了两个相同的工具编号。 UI 添加工具显示
The Dropdown list of tools: 网格中工具的下拉列表
我需要将这些下拉列表过滤为仅那些尚未显示在网格上的下拉列表。
蝴蝶刀刀
桃花长相依
相关分类