Hi Matthew,
Syncfusion greetings.
We provided the e-field support only for limited JS2 Syncfusion components like datepicker, datetimepicker, dropdownlist, multiselect, checkbox and input components . For other JS2 components, we have to handle the ‘get, set value’ in sample end using actionBegin and popupOpen events like below.
onPopupOpen(args) {
if(args.type=='Editor'){
this.listObj.value = args.data.Game || null
}
}
onActionBegin(args) {
if (args.requestType === 'eventCreate') {
args.data[0].Game = this.listObj.value;
}
if(args.requestType === 'eventChange') {
args.data.Game = this.listObj.value;
}
}
Regards,
Karthi