Changes between Initial Version and Version 1 of Ticket #8261, comment 8
- Timestamp:
- Jun 27, 2013, 8:27:09 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8261, comment 8
initial v1 2 2 3 3 If you want to use jQuery validation with editors created without adapter everything you should do is to refresh textarea using {{{editor.updateElement();}}} before validation. 4 5 Moreover you can connect save button of your editor to jQuery submit method using: 6 {{{ 7 editor.on( 'save', function() { 8 $( element.form ).submit(); 9 return false; //return false to cancel default behavior 10 } );