Changeset 4105 for trunk/plugins/validate/todo
- Timestamp:
- 12/11/07 15:13:47 (1 year ago)
- Files:
-
- 1 modified
-
trunk/plugins/validate/todo (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/validate/todo
r4098 r4105 68 68 - is that element == lastElement check in the onblur handler really useful? 69 69 70 - ajax: captcha validation ( http://psyrens.com/captcha/ )71 - allow to ignore a default value for onblur-validation72 70 - performance tuning: add about 100 fields to custom-method-demo and profile IE 73 71 - oninvalid/invalidSubmitHandler: called after a form is validated on submit and its invalid … … 78 76 - validate zip code in comparison to address, if match and state is missing, fill out state 79 77 - strong password check/integration: http://phiras.wordpress.com/2007/04/08/password-strength-meter-a-jquery-plugin/ 80 - add/modify onkeyup option: true - immediate, false - none 78 - add/modify onkeyup option: true - immediate, false - none, default - filtered 81 79 82 80 - validate on paste: … … 92 90 this.addEventListener('input',checkVal,false); 93 91 94 - docs: update options, fix rules/messages95 92 - custom-methods-demo.html enable summary container, currently broken, is updated too often 96 93 - stop firefox password manager to popup before validation - very very difficult … … 107 104 Examples: 108 105 - wordpress comment form, make it a drop-in method 109 - masked input plugin integration http://digitalbush.com/projects/masked-input-plugin -> marketo106 - ajax: captcha validation ( http://psyrens.com/captcha/ ) 110 107 - ajaxForm() integration 111 108 - ajaxSubmit with rules-option, more/less options to ajaxSubmit 112 109 - watermark integration http://digitalbush.com/projects/watermark-input-plugin 113 - custom password validation, eg. 6 chars min, and at least 1 number and at least 1 alpha or Must not use 123, abc, asdf or your username or your domain in the password, see addMethod2 test114 110 - datepicker integration (see dobis) 115 111 - timepicker integration ( http://labs.perifer.se/timedatepicker/ ) 116 - milk example117 - one example for each option112 - integration with CakePHP ( https://trac.cakephp.org/ticket/2359 ) 113 - integration with tabs: http://www.netix.sk/forms/test.html 118 114 - intergration with rich-text-editors (FCKEditor, TinyMCE, Codepress) 119 - integration with CakePHP ( https://trac.cakephp.org/ticket/2359 )120 - integration with tabs: http://www.netix.sk/forms/test.html121 122 115 -> In simple terms, you need to "move" the content from the TinyMCE 123 116 control to the textarea for validation. … … 129 122 130 123 http://www.fyneworks.com/jquery/FCKEditor/ 131 132 Examples for specifying validation rules via special classes:133 134 var classRules = {135 required: "required",136 requiredChecked: {137 required: "#checked:checked"138 },139 requiredMail: {140 required: true,141 email: true142 }143 };144 145 var rules = {};146 $(':input').each(function() {147 var input = this;148 if ( $(input).attr("class") ) {149 $.each($(input).attr("class").split(" "), function(i, n) {150 if ( n in classRules ) {151 rules[ input.name] = classRules[n];152 }153 });154 }155 });156 157 158 $("form").validate({159 rules: rules160 });
