IE 8 - Callback Function of JEditable handler does not trigger

IE 8 - Callback Function of JEditable handler does not trigger

brandynbrandyn Posts: 1Questions: 0Answers: 0
edited August 2010 in General
I was using IE8 and found problems. After I edited a table cell, the value was saved successfully but the update value did not show up until I refresh the browser manually. I found that the callback function had not been trigger after update saved. However, the same code worked on Chrome. If anyone knows why, please reply. Thank you
IE8 Version: 8.0.6001.18702
Chrome Version: 5.0.375.126
The code as follow:

[code]
$("TD[name=textfield]", oTable.fnGetNodes()).editable("gz_unit_table_edit.php", {
submit: \'OK\',
"callback": function( sValue, y ) {
var aPos = oTable.fnGetPosition( this );
oTable.fnUpdate( sValue, aPos[0], aPos[1] );
},
"submitdata": function ( value, settings ) {
return { "row_id": this.parentNode.getAttribute("id"),
"field":"unit"};
},
"height": "14px"
} );
[/code]

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    I don't see anything that would stop IE working - sorry. Perhaps try putting a few debugging alert()'s in? Does IE throw any JS errors?

    Allan
This discussion has been closed.