My question is same as addressed here
But It was working, if we use 1.jquery1.7.2.js
2.jquery.dataTables.min.js(1.7.2)
3.jquery.jeditable.js(1.7.3)
4.jquery.dataTables.editable.js(2.3.3)
But currently I am using 1.jquery1.10.2.js
2.jquery.dataTables.min.js(1.10.2)
3.jquery.jeditable.js(1.7.3)
4.jquery.dataTables.editable.js(2.3.3) It throwing error table.makeEditable() is not a function. I did not found where is the Mistake is? Please Help Me. Thanks In Advance.
<html> <head> <link href="/JqueryDatatable/css/dataTables.jqueryui.css" type="text/css" rel="stylesheet"/> <link href="/JqueryDatatable/css/jquery-ui.css" type="text/css" rel="stylesheet"/> <link href="/JqueryDatatable/css/jquery.dataTables.css" type="text/css" rel="stylesheet"/> <script type="text/javascript" src="/JqueryDatatable/js/jquery-1.10.2.js" ></script> <script type="text/javascript" src="/JqueryDatatable/js/jquery.dataTables.js" ></script> <script type="text/javascript" src="/JqueryDatatable/js/jquery.jeditable.js" ></script> <script type="text/javascript" src="/JqueryDatatable/js/jquery.dataTables.editable.js" ></script>
<script type="text/javascript"> $(document).ready(function() { var table= $('#example').DataTable( { // "sScrollY": 250 } ); // Apply the filter table.columns().eq( 0 ).each( function ( colIdx ) { $( 'input', table.column( colIdx ).header() ).on( 'keyup change', function () { table .column( colIdx ) .search( this.value ) .draw(); } ); } ); //Making datatable as editable columns table.makeEditable(); } );