We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uncaught ReferenceError: data is not defined
crud-view/webroot/js/local.js
Lines 45 to 54 in d0fc762
dependent-on
dependent-on-field
I assume this is a typo (data instead of query) and line 50
data
query
Line 50 in d0fc762
query[$ele.data('dependent-on-field')] = $('#' + $ele.data('dependent-on')).val();
The text was updated successfully, but these errors were encountered:
Fixed variable name in line 50
ea3e954
Fixes FriendsOfCake#303
Successfully merging a pull request may close this issue.
crud-view/webroot/js/local.js
Lines 45 to 54 in d0fc762
When
dependent-on
anddependent-on-field
values are setUncaught ReferenceError: data is not defined
is thrown at local.js:50I assume this is a typo (
data
instead ofquery
) and line 50crud-view/webroot/js/local.js
Line 50 in d0fc762
should be changed to:
The text was updated successfully, but these errors were encountered: