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