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
Right now if an object is created using dmodel the _scenario property is added. Would it be possible to delete it before it is sent to the server in the put method? My server rejects the call because it can't find an object with _scenario to bind to. Rather than having to add it to all the objects being received it would make sense to delete the property first.
I added this at line 87 of Rest.js and it worked perfectly.
delete object._scenario;
The text was updated successfully, but these errors were encountered:
Right now if an object is created using dmodel the _scenario property is added. Would it be possible to delete it before it is sent to the server in the put method? My server rejects the call because it can't find an object with _scenario to bind to. Rather than having to add it to all the objects being received it would make sense to delete the property first.
I added this at line 87 of Rest.js and it worked perfectly.
delete object._scenario;
The text was updated successfully, but these errors were encountered: