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
{{ message }}
This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
Update of the movie record in the grid results in the HTTP 404 error. This is due to missing parenthesis for the KO observable property "ID" in the "app.service.js" under "Scripts" folder.
Current:
update: function (item) {
return ajaxRequest('put', serviceUrls.byId(item.ID), item);
}
Correct:
update: function (item) {
return ajaxRequest('put', serviceUrls.byId(item.ID()), item);
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Update of the movie record in the grid results in the HTTP 404 error. This is due to missing parenthesis for the KO observable property "ID" in the "app.service.js" under "Scripts" folder.
Current:
Correct:
The text was updated successfully, but these errors were encountered: