Hi,
I have a data display problem, multi-column header error showing foreign key column as shown in attached video.
Can someone help me, many thanks.
The foreign key column property is declared as below:
col.dataTextField = col.dataTextField ?? "text";
col.dataValueField = col.dataValueField ?? "value";
col.dataSource = {
type: "json",
transport: {
read: function (options) {
ufn_ApiGetLookup({
data: col.source,
success: function (d) {
options.success(ufn_GetData(d));
}
});
}
}
}