data table not auto refreshing after editing cell

data table not auto refreshing after editing cell

mrajaariesmrajaaries Posts: 2Questions: 0Answers: 0
edited September 2013 in DataTables 1.8
I have a datable defined in this way;



$(document).ready(function() {

var oTable;



oTable = $('#mytable').dataTable({
"bServerSide": false,
"bJQueryUI": true,
"bProcessing": true,
"sAjaxSource": 'interface_downtime_table.jsp',
aoColumns: [
{
sName: "TES_INTERFACE_ID",
"bVisible": false

},
{
sName: "TES_APP_ID",
},
{
sName: "TES_ENV",

},
{
sName: "TES_START_DATE"
},
{
sName: "TES_END_DATE"
},
{
sName: "TES_PLANNED_UNPLANNED"
},
{
sName: "TES_COMMUNICATIONID"
},
{
sName: "TES_REASON"
}

]

});

oTable.makeEditable({
sUpdateURL: "UpdateData.jsp",

}); });



Here I am populating the DataTable with values (JSON String) from the database. With this implementation I am able to edit the cell and value is also getting updated in the database. But in order to reflect the changes on the UI DataTable I have to refresh the page everytime. UpdateData.jsp returns the updated value.

Replies

  • mrajaariesmrajaaries Posts: 2Questions: 0Answers: 0
    http://code.google.com/p/jquery-datatables-editable/wiki/EditCell#Setting_the_server-side_page_used_for_update

    I referred while adding the editcell functionality and came up with this code
  • allanallan Posts: 61,726Questions: 1Answers: 10,109 Site admin
    Sorry - we can't provide support for third party software here. If you are having problems with that particular plug-in, I'd suggest asking in their support tracker (noting also that the plug-in is depreciated by the author).

    Allan
This discussion has been closed.