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
The validatable extender provides a way to remove any validation defined on the observable by using it like observable.extend({validatable: false}). This fails when using the minified version of Knockout because the extender attempts to access internal fields from Knockout library which are not exported.
varobsv=ko.observable().extend({validatable: true});obsv.isModified.subscribe(function(){});// The line failsobsv.extend({validatable: false});
The text was updated successfully, but these errors were encountered:
The
validatable
extender provides a way to remove any validation defined on the observable by using it likeobservable.extend({validatable: false})
. This fails when using the minified version of Knockout because the extender attempts to access internal fields from Knockout library which are not exported.The text was updated successfully, but these errors were encountered: