editor.create or editor.edit dont open form
editor.create or editor.edit dont open form
after an update or add a row, editor dont open again.
@ Allan, really need help on this, cannot debugg the issue.
what does this._tidy . How to prevent this function to return false?
http://www.quad-systems.pt/QUAD_HCM/#ajax/datatablePROTODocs.php
This discussion has been closed.
Answers
Hi,
Thanks for the link. It isn't immediately obvious what is going wrong here, so I'll need to get back to you when I've had a bit longer to debug the issue. I'll post back here when done.
Regards,
Allan
thanks. this._tidy return true. Override this behaviour by set editor.s.processing = false
Also a problem
tbl.on( 'select', function ( e, dt, type, indexes ) {
debugger;
if(e.target.tagName !== 'tr')
return;
} );
e.target.tagName is always 'TABLE' even if i click a button on a column .
i dont want to select a row if the target is diferent from 'tr'
Its the same issue as in our previous discussion on this topic. You aren't executing Editor's
callback
function in yourajax
function.Allan