You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the response from the server is nested, and you're using submit = true, the _mergeUpdateForSubmit function triggers on a successful request.
When this function reads the JSON the server has answered with, it is only accessing first-level tables, therefore it isn't retrieving errors server is returning in child tables, deeming operations as successful.
When the response from the server is nested, and you're using submit = true, the _mergeUpdateForSubmit function triggers on a successful request.
When this function reads the JSON the server has answered with, it is only accessing first-level tables, therefore it isn't retrieving errors server is returning in child tables, deeming operations as successful.
JSDO/src/progress.js
Lines 5525 to 5551 in 319202b
Here, dataSetJsonObject holds a NESTED dataSet, so only one table is present, rest are nested inside:
JSDO/src/progress.js
Line 5534 in 319202b
Only table is gonna see error processing is the initial table, while errors may occur on child tables.
Is there any workaround for this? useRelationships does nothing in this scenario.
The text was updated successfully, but these errors were encountered: