Editor show false
Editor show false
vincmeister
Posts: 136Questions: 36Answers: 4
in Editor
Hi Allan,
Need help on editor show false
According to this reference, i want to do a silent create. Submit new data without showing form.
My code:
$('#stand').on( 'click', function () {
barcode = $('#barcode').val();
editor
.create({
show: false
})
.submit();
} );
The form still appear, but closed after submit() has been executed.
Please advise
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
this works:
you probably need to replace
with
and of course you need to set the editor's fields.
Thanks @rf1234
it works