javascript - Disable submit button on file input validation error using krajee file-input plugin -


i using plugins.krajee.com/file-input , can't find way of disabling upload or submit button of form when validation error occurs minimagewidth exceeded.

$('.file').fileinput({         language: 'en',         showupload: false,         allowedfileextensions : ['jpg', 'png','gif'],         maxfilesize:1024,         minimagewidth:286,         minimageheight:322      }); 

how use $('.file').fileinput('disable'); when image width minimum setting returns validation error?


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -