提问人:sabarish.niranjan 提问时间:4/18/2020 最后编辑:sabarish.niranjan 更新时间:4/18/2020 访问量:232
JQuery 数据表编辑器在成功编辑后未更新行
JQuery Datatable Editor not updating row after successful edit
问:
我正在使用 JQuery Datatable Editor 并使用 Java Servlet 进行服务器端处理。编辑行工作正常,但更新的数据未显示在表中。 编辑成功,我能够在浏览器控制台中看到更新行的 JSON 对象。
var editor = new $.fn.dataTable.Editor( {
ajax: '/fda/intranet/translationNew/TranslationFileServ',
table: '#example',
idSrc: 'id',
fields: [
{ label: 'Id', name: 'id',type: "readonly" },
{ label: 'In Current File', name: 'inCurrentFile',type: "readonly" },
{ label: 'en_us', name: 'en_us',type: "readonly" },
{ label: 'translatedTo', name: 'translatedTo',type: "readonly" },
{ label: 'translation', name: 'translation', type: 'textarea' }
// etc
]
} );
答: 暂无答案
评论