type annotation of editor.inline
type annotation of editor.inline
Debugger code (debug.datatables.net):
dt.on('click', 'tbody td:not(:first-child)', function () {
editor.inline(this, {
onBlur: 'submit' // 'submit', 'cancel', 'close'
// submit: 'allIfChanged' // 'all', 'changed', 'allIfChanged'
})
})
Error messages shown:
'this' implicitly has type 'any' because it does not have a type annotation.
Description of problem:
Typescript complain 'this' parameter have no type annotation. How can solve this problem?
This discussion has been closed.
Answers
Good call! I've committed the fix. Apologies for having missed that.
Allan