У меня есть требование, когда мне нужно удалить одну строку из таблицы в строку другой таблицы.Во время удаления некоторые из исходных столбцов должны быть добавлены в цель.Пример:
В исходной таблице есть column Id
, Number of Bundles
, Number of tags
и Target has Id
, Number of Bundles
, Number of tags
В приведенном выше примере при удалении строки источникав целевой строке, как я могу добавить Number of Bundles
значения столбца и Number of Tags
значения столбца отдельно?
Я достиг перетаскивания и сложения значений, если в строке только один столбец.Ценю любую помощь.Я очень новичок в JQuery.
код скрипта ниже (я не знаю, как добавить HTML-код здесь):
source.draggable({
revert: true,
opacity: .75,
containment: '.container',
cursor: 'move',
cursorAt: { top: 35, left: 45 },
helper: function(event) {
return $('<div class="drag-row"><table></table></div>')
.find('table').append($(event.target).closest('tr').clone()).end();
},
appendTo: 'body'
});
target.droppable({
drop: function(event, ui) {
var classid = ui.helper.find('tr').attr('Number of Bundles');
var name = ui.helper.find('.name').html();
$(this).addClass('drophighlight')
.find('td')
.html(($(this).find('td').text()*1) + (ui.draggable.children("td").text() *1));
//$(this).addClass('drophighlight')
// .find('td')
//.html(ui.draggable.children("td").text()*1);
//alert('row dropped ' + ui.draggable.children("td").text());
},
accept: source.selector
});
<div class="tcontainer">
<table width="90%" border="1" id="t1">
<caption>
Source
</caption>
<tr>
<th scope="col">Team</th>
<th scope="col">Number of Bundles</th>
<th scope="col">Number of Orders</th>
<th scope="col">Number of Shipping Tags</th>
</tr>
<tr>
<td class="team">1</td>
<td class="bundle">100</td>
<td class="name">9</td>
<td class="name">15</td>
</tr>
<tr>
<td class="team">2</td>
<td class="bundle">800</td>
<td class="name">15</td>
<td class="name">30</td>
</tr>
<tr>
<td class="team">3</td>
<td class="bundle">550</td>
<td class="name">11</td>
<td class="name">26</td>
</tr>
</table>
</div>
<div class="tcontainer">
<table width="90%" border="1" id="t2">
<caption>Target</caption>
<tr>
<th scope="col">Team</th>
<th scope="col">Number of Bundles</th>
<th scope="col">Number of Orders</th>
<th scope="col">Number of Shipping Tags</th>
</tr>
<tr>
<td class="team">1</td>
<td class="bundle">500</td>
<td class="name">29</td>
<td class="name">53</td>
</tr>
</table>
</div>