How to make my table editable
How to make my table editable
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
No, but you can use javascript and datatables to insert textboxes into the cell and update data that way