Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. $(document).on('keyup','.existing_repeat_entry_panel #component-85c0-fbd0-4cf4', function(){
  2. //Check the value of requied filed
  3. //Loop for repeat index
  4. for (var repeat_index=0; repeat_index < window.formyoula.form_fields["5fb5-8b93-521e"].get('repeat_value').length; repeat_index++ ) {
  5. //Check the value of requied filed
  6. if ($('#collapse_5fb5-8b93-521e_'+repeat_index+' #component-85c0-fbd0-4cf4 .input_content').val()) {
  7. //Enable the submit button
  8. $(".finish").attr('disabled',false);
  9. } else {
  10. //Disable the submit button
  11. $(".finish").attr('disabled',true)
  12. break;
  13. }
  14. }
  15. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement