jeditable fnUpdate update cell with MySQL?

jeditable fnUpdate update cell with MySQL?

anaganag Posts: 48Questions: 2Answers: 7
edited September 2011 in General
My programmer isn't able to get jeditable to work right. I had to create the initialization for the table for him and he's having trouble getting the cell to display the updated data. When we edit a cell in the table that field is updated in the database but the cell still shows the old data. What is wrong with the initialization of the table it should refresh that cell but I know something is missing, any help is very much appreciated thanks in advance.

[code]
$(document).ready(function() {

oTable3 = $('#links').dataTable( {
"sDom":'t<"bottom"ifpl><"clear">',
"bAutoWidth": false,
"sPaginationType": "full_numbers",
"aoColumns": [
{ "bSortable": false},
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
]

}
).makeEditable({
sUpdateURL: "http://domain.com/account/profiles/updatelinkvalue",
"aoColumns": [
null,
null,
{
//indicator: 'Saving Engine Version...',
tooltip: 'Click to change link status',
loadtext: 'loading...',
type: 'select',
onblur: 'submit',
submit: 'Ok',
loadurl: 'http://domain.com/account/profiles/engineversionlist',
loadtype: 'GET',
sUpdateURL: "http://domain.com/account/profiles/customupdateenginevalue"
},
[/code]
This discussion has been closed.