$(document).ready(function () {
$('.outer-repeater').repeater({
show: function() {
$(this).slideDown();
},
hide: function (deleteElement) {
if(confirm('Outer delete sure?')) {
$(this).slideUp(deleteElement);
}
},
repeaters: [{
selector: '.inner-repeater',
hide: function (deleteElement) {
if(confirm('Inner delete sure?')) {
$(this).slideUp(deleteElement);
}
},
show: function() {
$(this).slideDown();
}
}]
});
});
I've stuck for 2 days. So here is my questions:
- How to hide 1st outer repeater after initializing? It will appear only after clicking add button.
- I receive 2 delete Outer delete confirmation followed by inner delete confirmation when I try delete inner item. I've read similar topics but I couldn't figure out in my code. https://github.com/DubFriend/jquery.repeater/issues/42
For your first question: "How to hide 1st outer repeater after initializing? It will appear only after clicking add button."
You can add style="display:none;" to your first data-repeater-item Example:
Another choice is to delete the element