Hello, i have function for example def form_1(): form = SQLFORM (_name='form_1')
and i want inside a different function to load this form and insert
element into it
For example:
def another_fn(form_name):
form = # load the form by form Name
#and then do
form[0].element().insert() ....
Is that valid or not ?
Thanks in Advance
Neveen

