-
-
Save AnjaneyuluBatta505/ee299a37d82c68ac7f4f8f22db492d84 to your computer and use it in GitHub Desktop.
Django Library: Normal form js code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- create_normal.html :: part 4 --> | |
<script type='text/javascript'> | |
function updateElementIndex(el, prefix, ndx) { | |
var id_regex = new RegExp('(' + prefix + '-\\d+)'); | |
var replacement = prefix + '-' + ndx; | |
if ($(el).attr("for")) $(el).attr("for", $(el).attr("for").replace(id_regex, replacement)); | |
if (el.id) el.id = el.id.replace(id_regex, replacement); | |
if (el.name) el.name = el.name.replace(id_regex, replacement); | |
} | |
function cloneMore(selector, prefix) { | |
var newElement = $(selector).clone(true); | |
var total = $('#id_' + prefix + '-TOTAL_FORMS').val(); | |
newElement.find(':input').each(function() { | |
var name = $(this).attr('name').replace('-' + (total-1) + '-', '-' + total + '-'); | |
var id = 'id_' + name; | |
$(this).attr({'name': name, 'id': id}).val('').removeAttr('checked'); | |
}); | |
total++; | |
$('#id_' + prefix + '-TOTAL_FORMS').val(total); | |
$(selector).after(newElement); | |
var conditionRow = $('.form-row:not(:last)'); | |
conditionRow.find('.btn.add-form-row') | |
.removeClass('btn-success').addClass('btn-danger') | |
.removeClass('add-form-row').addClass('remove-form-row') | |
.html('<span class="glyphicon glyphicon-minus" aria-hidden="true"></span>'); | |
return false; | |
} | |
function deleteForm(prefix, btn) { | |
var total = parseInt($('#id_' + prefix + '-TOTAL_FORMS').val()); | |
if (total > 1){ | |
btn.closest('.form-row').remove(); | |
var forms = $('.form-row'); | |
$('#id_' + prefix + '-TOTAL_FORMS').val(forms.length); | |
for (var i=0, formCount=forms.length; i<formCount; i++) { | |
$(forms.get(i)).find(':input').each(function() { | |
updateElementIndex(this, prefix, i); | |
}); | |
} | |
} | |
return false; | |
} | |
$(document).on('click', '.add-form-row', function(e){ | |
e.preventDefault(); | |
cloneMore('.form-row:last', 'form'); | |
return false; | |
}); | |
$(document).on('click', '.remove-form-row', function(e){ | |
e.preventDefault(); | |
deleteForm('form', $(this)); | |
return false; | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment