Hello Yuniar.
I'm trying to extend the Form Properties tab of edit_form.php, to add another checkbox below "Limit One Entry Per User".
For example, it would be called "Verify info".
What I've done is: <input id="form_verifyinfo" class="checkbox" value="" tabindex="7" type="checkbox"
* Added a field on the ap_forms table (called it form_verifyinfo).
* Added markup, js and php in edit_form.php
`
$form->verifyinfo = $row['form_verifyinfo'];
</code>
(...)
<code>
onclick="if (this.checked){ update_form('1', 'verifyinfo')} else {update_form('0', 'verifyinfo')};"
<? if ($form->verifyinfo == 1){ echo 'checked';} ?>>
`
As you can see, I'm doing update_form('1', 'verifyinfo')...
I also tried adding this manually into main_form (by adding onload main_form['data']['verifyinfo']=1;)
But it doesn't get into the DB... What am I missing? Having a non-obfuscated version of the JS would help, but I can see you have your reasons for doing that :)