Using closeOnComplete with create()
Using closeOnComplete with create()
I am trying to create a data entry form that captures information and remains open after posting in order to capture other rows.
The closeOnComplete is working in the sense that it keeps the window open, However, the add button no longer responds and post future records.
Does the closeOnComplete work with create() or just edit()?
Does anyone know how to acheive this?
Thanks
This discussion has been closed.
Answers
closeOnComplete
should work withcreate()
, as you say, in the sense that it keeps the window open, but it doesn't reset the form. For that, I think what you would need to do is listen forsubmitComplete
and callcreate()
in its callback handler.Allan