Warren White
Warren White
There are bugs reported that this is common using DataTables.css with Bootstrap.css, since we are using Wet-Boew, I had to come up with my own solution. My project opens a...
I see that there is an exception if using wb-tables DataTables plugin. If appending any one of `"", "", "", ""` tags, then DOMPurify.sanitize() is not executed. However, I do...
> Hi @locutux I'm not an expert here but from your code VS the example you don't have this part : `data-rule-dateISO="true" ` Use data-rule-dataISO for validating. Use required if...
This is not an issue, formatting for user readability is not great. Current documentation shows: > success > Type: [String](http://api.jquery.com/Types/#String) or [Function](http://api.jquery.com/Types/#Function)() > If specified, the error label is displayed...
Update all versions of jQuery, mockjax, and validate. ``` ``` In head tag of milk.html, works fine.
Latest pre-built version 1.19.5 / 2022-07-01 download works fine. If you using from source, you need to build the distribution (dist) folder using grunt.
The real problem is that https://jqueryvalidation.org/files/ needs to be rebuilt from latest. https://jqueryvalidation.org/files/lib/jquery.js is showing jQuery 1.11.1 Latest download prebuilt shows jQuery 3.1.1. ^^^ this is the problem, not the...
Duplicate bug: https://github.com/jquery-validation/jquery-validation/issues/276 DateISO only does structure checks, where 1983-02-30 is a valid DateISO structure. It is an invalid Date.
I find it interesting that the 'date' validator is deprecated in favor for date ISO which is a standard notation/format. There is no way to verify that the date is...
`return this.optional( element ) || ( !/Invalid|NaN/.test( new Date( value ) ) && /^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test( value ) );` adding the !/Invalid|NaN/.test( new Date( value ) check fixes the current use case....