Below are the stages:
1. I am reading list from Odata service with ODataV4Adaptor.
2. Some columns in the grid are in the model dependent on the main model. Example: While showing the department list, I need to show the company name to which the department is affiliated.
"Code": "Dept1",
"Name": "Sample Department1",
"Id": 11,
"ReferenceCode": null,
"IsActive": true,
"Company": {
"Name": "Main Company"
}
3. With Odata Expand, I show the information I want in the column.
4. I have no problems with the update process.
5. In the process of adding a new record, the "Save" button does not trigger anything. If I press the "Cancel" button, the dialog screen closes.
6. If I use the company "ID" column instead of the company name in the department model, there is no problem in adding a new record.
7. I use Template for adding and updating new records.