** Два столбца доступны для редактирования, но я хочу, чтобы редактировался только один столбец - количество. Но это не работает. Что не так с кодом ниже? с HTML-кодом
**
$ (Документ) .ready (функция () {
$('#editable_table').Tabledit({
url:'action.php',
columns:{
identifier:[0, "id"],
editable:[ [1, 'tran_quantity'] ]
},
restoreButton:false,
onSuccess:function(data, textStatus, jqXHR)
{
if(data.action == 'delete')
$('#'+data.id).remove();
}
});
});
<table id="editable_table" class="table table-hover table-sm" style="border-radius: 5px; font-size: 12px">
<thead>
<tr>
<th>Decription</th>
<th style="text-align: right">Price</th>
<th style="text-align: center">Quantity</th>
<th style="text-align: right">Amount</th>
</tr>
</thead>
<tbody>
<?php
while($row = mysqli_fetch_array($result))
{
echo '
<tr>
<td>'.$row["tran_description"].'</td>
<td align="right">'.$row["tran_price"].'</td>
<td align="center">'.$row["tran_quantity"].'</td>
<td align="right">'.$row["tran_amount"].'</td>
</tr>
';
}
?>
</tbody>
</table>