jquery.repeater
jquery.repeater copied to clipboard
Dynamically added select options are not showing
When i click the repeater add button the dynamically added select options are not showing in the new repeater row.
You should select it on show event.
$('#your_repeater').repeater({
initEmpty: false,
isFirstItemUndeletable: true,
show: function () {
$(this).find('select').val('whatever-option-value-you-like-to-be-selected');
$(this).slideDown();
},
hide: function (deleteElement) {
$(this).slideUp(deleteElement);
}
});