How to make my table editable

How to make my table editable

marywangmarywang Posts: 1Questions: 1Answers: 0

On HTML side i have <thead>Data</thead> and nothing in tbody it's like <tbody></tbody>

On Javascript

table = $(' #allowed_cli_table_csdp').DataTable({
scrollY : "200px",
scrollCollapse : true,
paging : false,
info : false,
searching : false,
select : true,
data : jsonArraycsdp
});

My question here is if there is any property or attribute i can add on JS side or HTML side so that a user is able to edit the values ?

Regards
Mary

Answers

  • bindridbindrid Posts: 730Questions: 0Answers: 119

    No, but you can use javascript and datatables to insert textboxes into the cell and update data that way

This discussion has been closed.