Some of the rows in the table are not able to edit. It gets frizzes after Enter.
Some of the rows in the table are not able to edit. It gets frizzes after Enter.
george.thomas
Posts: 2Questions: 2Answers: 0
The table was working like a charm without any issue for months. there was no update from our side with the code.
$('#table').on('click', 'tbody td', function (e) {
var idx = table.cell(this).index().column;
var title = table.column(idx).header();
colName = $(title).html()
if (colName.trim() === "Comments") {
editor.bubble(this, {
onBlur: 'submit'
});
} else {
editor.inline(this, {
onBlur: 'submit'
});
}
});
Answers
Something must have changed . Perhaps on the server-side? Can you give me a link to a page showing the issue so I can debug it?
Allan