MySQL interesse |
|
Martijn schreef: noem ze name="sequence[]". Op het moment van een post zal het automatisch 0,1,2,3 wordenÂ
Nog niet geprobeerd, heb het momenteel opgelost met javascript.
// Make the droppable contents sortable.
$('#content .droppable').sortable({
axis: 'y',
cursor: 'move',
items: '> *',
sort: function() {
$('#main, #sidebar_right, #sidebar_left').removeClass('drop-active');
},
stop: function() {
var count = 0;
$('#content div#'+$(this).attr('id')+' input.sequence').each(function() {
$(this).val(count++);
});
}
});
// Make the droppable contents sortable. $('#content .droppable').sortable({ axis: 'y', cursor: 'move', items: '> *', sort: function() { $('#main, #sidebar_right, #sidebar_left').removeClass('drop-active'); }, stop: function() { var count = 0; $('#content div#'+$(this).attr('id')+' input.sequence').each(function() { $(this).val(count++); }); } });
|