Multiple Row Creation w/o submit
Multiple Row Creation w/o submit
Hi Allan,
is it able to create multiple new rows without submitting each in silent (do not show form) mode. I want to avoid a table draw for each new row, which leads to an incremental trigger of the column/preDraw callbacks.
Thx for your help in advace.
Kind regards
Martin
This discussion has been closed.
Answers
Sort of. There are two options:
drawType
option of theform-options
object and set it to benone
. That will cause the table not to update after the submit is complete.create()
to create multiple rows in a single call.Allan
Hi Allan,
how do I have to use create() to create multiple rows in a single call? Do I have to use multiSet()?
Thank you.
Martin
Yes - if you want to create multiple rows with different values you would need to use
multiSet()
.Allan