Is there a way to stop Dojo from validating a textbox onBlur?
var textbox = new ValidationTextBox({
placeholder : "search",
name : "userQuery",
required : true,
missingMessage : "Please enter search term",
onBlur : function(){
//function to stop onBlur validation
}
}, textboxNode);
Technically, yeah. But I’m not sure when it would validate if it’s not onBlur.