自从过去这么多天以来,我一直在为解决问题而摸不着头脑,但找不到。以下是dx标签框相关问题的描述。https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxTagBox/
问题描述:我需要向 dxtagbox 添加自定义值,这些值还不是 dxtagbox 列表的成员。以下是我实现此功能的 html 和 ts 代码。我已经尝试了多种方法,但到目前为止还没有成功。
common.component.html
<div class="row">
<div class="form-group col-md-12 mt-2">
<label>Region</label>
<dx-tag-box id="region-lookup" [dataSource]="regionListLookup" class="time-box" [showClearButton]="true"
style="height: auto !important;" [acceptCustomValue]="true"
[applyValueMode]="'useButtons'" (onKeyUp)="onEmptyingList($event)" (onValueChanged)="onClearingList($event)" [showSelectionControls]=true
[searchEnabled]="true" [value]="regions"
displayExpr="Value" valueExpr="Key">
</dx-tag-box>
</div>
common.component.ts
regions = [];
populateRegionslookup() {
this.regionListLookup = {
paginate: true,
store: new CustomStore({
key: 'Key',
load: async (loadOptions) => {
console.log('this: ', this);
console.log('loadOptions: ', loadOptions);
const paginatedData = { Text: loadOptions.searchValue, PageNo: loadOptions.skip, PageSize: loadOptions.take};
const result = await this.reportsService.getRegionsMetaData(paginatedData)
.toPromise();
console.log('this.reportsService.getRegionsMetaData("{' + loadOptions.searchValue + ' })', result);
result.map((resultItem) => {
resultItem.Value = `${resultItem.Key} - ${resultItem.Value}`;
return resultItem;
});
return result;
},
byKey: (key) => {
console.log('from byKey: ', key);
//code to return from api by key
}
})
};
}
onEmptyingList(event) {
if (event.event.key == 'Backspace' || event.event.key == 'Delete') {
//For Tagbox
if(event.element.id == 'region-lookup') {
this.taggedRegions = event.value;
this.timeReportsSearchModel.Region = this.taggedRegions;
this.missingOfficeTagBoxComponent && this.missingOfficeTagBoxComponent.instance.getDataSource().reload();
}
}
}
onClearingList(event) {
//For Tag Box
if(event.element.id == 'region-lookup') {
this.taggedRegions = event.value;
this.timeReportsSearchModel.Region = this.taggedRegions;
this.missingOfficeTagBoxComponent && this.missingOfficeTagBoxComponent.instance.getDataSource().reload();
}
}
constructor(){
this.regions = ["customValue1","customValue2","customValue3","customValue4"]
this.populateRegionslookup();
}
在这里,我想强制将“区域”数组值添加到标签框,尽管这些值不是来自用于填充标签框项目的 api。我什至无法在 ui 的标签框中输入自定义值,如 devexpress 文档中所示。
有什么办法可以做到这一点,还是我只是在浪费时间,我应该尝试其他方法?
请帮帮我。谢谢