Rob Johnston

Results 74 comments of Rob Johnston

I'm not sure how to interpret that other problem... maybe you need to review which jQuery selectors are available for use? See https://api.jquery.com/category/selectors/

And I suppose to take advantage of date pickers that are built into browsers? I'm specifically thinking of mobile devices here, as desktop browsers aren't quite as good yet.

Yes, something should be mentioned, as this "pattern" thing keeps coming up. I thought about adding an example a long time ago, but it wasn't workable: https://github.com/wet-boew/wet-boew/issues/7226#issuecomment-160997645

Correction... I had forgotten that the "pattern" attribute has been added recently. See https://github.com/wet-boew/wet-boew/pull/8983.

Does this relate to my issue https://github.com/wet-boew/wet-boew/issues/8500 where I found the search lacking the `regex`, `smart`, and `caseInsen`?

Don't quite follow... was the issue here that slashes should not be allowed? Take a look at #6878. I submitted a patch to jquery validation in July for the dateISO...

There was an [issue about creating a step-by-step wizard](https://github.com/wet-boew/wet-boew/issues/6367), but it went nowhere. However, within that issue, there's a reference to[ jQuery Steps](http://www.jquery-steps.com/GettingStarted), which may be what your looking for.

From past postings, I know your JavaScript skills are better than mine. But just to confirm, `frmEditPage` is a class on a control on the page and not the name...

Do you not have to use the method somehow after declaring it? For example (note, I changed the `name` parameter from `frmEditPage` to `ckrequired`): ```js $("frmEditPage").validate({ ignore: [], rules: {...

If you made it a class on the form control, then that would happen. Something like: ```html ```