113 lines
3.1 KiB
JavaScript
113 lines
3.1 KiB
JavaScript
$(document).ready(function() {
|
|
|
|
$('fieldset.fields').parents('form').submit(function() {
|
|
$('fieldset.fields li.template input, fieldset.fields li.template select').attr('disabled', 'disabled');
|
|
});
|
|
|
|
var defaultValue = $('fieldset.fields li.template input[type=text]').val();
|
|
var selectOnChange = function(select) {
|
|
select.hide();
|
|
select.prev()
|
|
.show()
|
|
.html(select[0].options[select[0].options.selectedIndex].text);
|
|
}
|
|
|
|
var refreshPosition = function() {
|
|
jQuery.each($('fieldset.fields li.added input.position'), function(index) {
|
|
$(this).val(index);
|
|
});
|
|
}
|
|
|
|
/* __ fields ___ */
|
|
$('fieldset.fields li.added select').each(function() {
|
|
var select = $(this)
|
|
.hover(function() {
|
|
clearTimeout(select.attr('timer'));
|
|
}, function() {
|
|
select.attr('timer', setTimeout(function() {
|
|
select.hide();
|
|
select.prev().show();
|
|
}, 1000));
|
|
})
|
|
.change(function() { selectOnChange(select); });
|
|
|
|
select.prev().click(function() {
|
|
$(this).hide();
|
|
select.show();
|
|
});
|
|
});
|
|
|
|
$('fieldset.fields li.template input[type=text]').focus(function() {
|
|
if ($(this).hasClass('void') && $(this).parents('li').hasClass('template'))
|
|
$(this).val('').removeClass('void');
|
|
});
|
|
|
|
$('fieldset.fields li.template button').click(function() {
|
|
var lastRow = $(this).parents('li.template');
|
|
var newRow = lastRow.clone(true).removeClass('template').addClass('added new').insertBefore(lastRow);
|
|
|
|
var dateFragment = '[' + new Date().getTime() + ']';
|
|
newRow.find('input, select').each(function(index) {
|
|
$(this).attr('name', $(this).attr('name').replace('[-1]', dateFragment));
|
|
});
|
|
|
|
// should copy the value of the select box
|
|
var input = newRow.find('input.label');
|
|
if (lastRow.find('input.label').val() == '') input.val("undefined");
|
|
|
|
var select = newRow.find('select')
|
|
.val(lastRow.find('select').val())
|
|
.change(function() { selectOnChange(select); })
|
|
.hover(function() {
|
|
clearTimeout(select.attr('timer'));
|
|
}, function() {
|
|
select.attr('timer', setTimeout(function() {
|
|
select.hide();
|
|
select.prev().show();
|
|
}, 1000));
|
|
});
|
|
select.prev()
|
|
.html(select[0].options[select[0].options.selectedIndex].text)
|
|
.click(function() {
|
|
$(this).hide();
|
|
select.show();
|
|
});
|
|
|
|
// then reset the form
|
|
lastRow.find('input').val(defaultValue).addClass('void');
|
|
lastRow.find('select').val('input');
|
|
|
|
// warn the sortable widget about the new row
|
|
$("fieldset.fields ol").sortable('refresh');
|
|
|
|
refreshPosition();
|
|
});
|
|
|
|
$('fieldset.fields li a.remove').click(function(e) {
|
|
if (confirm($(this).attr('data-confirm'))) {
|
|
var parent = $(this).parents('li');
|
|
|
|
if (parent.hasClass('new'))
|
|
parent.remove();
|
|
else {
|
|
var field = parent.find('input.position')
|
|
field.attr('name', field.attr('name').replace('[position]', '[_destroy]'));
|
|
|
|
parent.hide().removeClass('added')
|
|
}
|
|
|
|
refreshPosition();
|
|
}
|
|
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
});
|
|
|
|
// sortable list
|
|
$("fieldset.fields ol").sortable({
|
|
handle: 'span.handle',
|
|
items: 'li:not(.template)',
|
|
axis: 'y',
|
|
update: refreshPosition
|
|
});
|
|
}); |