Hello,
Do you have any leads regarding my problem?
I want my form to be automatically saved every 30 seconds after creation or when updating?
Thank you
Hello,
Do you have any leads regarding my problem?
I want my form to be automatically saved every 30 seconds after creation or when updating?
Thank you
This in onScriptInit should do the trick
?>
<script type=âtext/javascriptâ>
setInterval(ânm_atualiza(âalterarâ);â,60000);
</script>
<?php
Great thank you !
So simple?
I had seen other messages with this function, but I cannot find anything in the documentation regarding the parameters.
I will adapt it to my needs, because for the moment, it only works if the form has been saved a first time.
As I am using it in a master / detail context, I will try to activate it only when a new element has been added.
Thank you !!