Responsive and Makeeditable datatables : is-it possible to edit the details ?
Responsive and Makeeditable datatables : is-it possible to edit the details ?
I created a editable datatables and it works perfectly. I double-click on my cells to update my data, it's great.
Now, I use my datatable in responsive mode and I can't double-click on cells which appear in details (on the newt line).
Here, the declaration of my datatables :
var MyRefConf = $('#myDataTable').dataTable({
"bInfo":false,
searching:true,
columnDefs: [ { orderable: false, targets: [0] }],
"iDisplayLength": 12,
responsive:true,
aoColumns: [
{
"width":"60",
sName: "id_conf",
},
{
"width":"20",
sName: "env"
},
{
"width":"20",
sName: "name"
},
{
"width":"20",
sName: "server"
}
]
}
).makeEditable( {
// sAddURL: "AddData.php",
sDeleteURL: "DeleteData.php?id=",
sUpdateURL: "UpdateData.php",
"aoColumns": [
null,
{
},
{
},
{
}
]
});
If you could help me to edit cells with responsive datatables ?
version datatables : DataTables-1.10.4
Version jquery.jeditable.js : 1.7.3
Answers
Version: jquery.dataTables.editable.js : 2.3.3.
Is somebody can help me ?
Makeeditable is thirdparty software and not supported in this forum.
Allan
Argh... And what is the supported tool freeware to have an editing cell ? I've Editor but it is under licence.
Editor is the software I promote and sell as part of the DataTables project. I don't currently publish a free version. The DataTables API is available if you wish to create your own.
Allan