editable not working properly

editable not working properly

xintellxintell Posts: 13Questions: 0Answers: 0
edited September 2012 in General
my code
[code]

$(document).ready(function() {
$("#tabs").tabs( {
"show": function(event, ui) {
var table = $.fn.dataTable.fnTables(true);
if ( table.length > 0 ) {
$(table).dataTable().fnAdjustColumnSizing();
}
}
} );
$('table.display').dataTable( {
"sPaginationType": "full_numbers",
"bScrollCollapse": true,
"bJQueryUI": true,
"sScrollY": "400px",
} );
$('.edit_area').editable("save.php", {
type: 'textarea',
cancel: 'Cancel',
submit: 'Save',
indicator : 'Saving...',
});
} );


[/code]

my table
[code]

<?php echo $type; ?>

<?php echo $time; ?>

<?php echo $text; ?>


[/code]

my problem
- all the table with edit_area are editable in first page but not functioning on the following pages

Replies

  • allanallan Posts: 63,161Questions: 1Answers: 10,406 Site admin
    See: http://datatables.net/faqs#events .

    Allan
This discussion has been closed.