Hi, I'm tinkering around with the example page trying to make a form,
I was able to get it working using something like"
$qa_content=qa_content_prepare();
....
$qa_content['form']=array(....) //Passing all the form parameters
...
return $qa_content;
So far, I have little clue what happens after I return $qa_content. This is troubling me now, because I'd like to build a form using ajas (i.e. replacing the html inside of a div after the user clicks on a button). I'm wondering if there is a way to get the raw html that gets the form build (something like buildform ($qa_content['form']) )
Any suggestions? Thanks