Quantcast
Channel: Free community support — DataTables forums
Viewing all articles
Browse latest Browse all 35272

Responsive and Makeeditable datatables : is-it possible to edit the details ?

$
0
0

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


Viewing all articles
Browse latest Browse all 35272

Trending Articles