-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
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
onChange not supported #24
Comments
👍 |
This is still an active issue. From what I understand the ASF onChange is fired via angulars Anyone have any insight? |
+1 |
Is there any news about this? |
Hi... I have the same issue. Any workaround? |
You could use a regular $watch. Depending on what you want to do this might work just fine as a workaround $scope.$watch('model.start_date', function(val) {
console.log("start_date =", val);
}); |
Thanks @kornosaurus for your response. The workaround works great for me! |
Hello,
I'm trying to use the "onChange" (from the standard option of angular-schema-form)
but the function is never called :
The text was updated successfully, but these errors were encountered: