I need to create a form with Inputs. I need a radio button followed by 8 text fields. In looking through the documents I see:
<?php
RadioList::create(array(
"name"=>"radioList",
"dataStore"=>$this->dataStore("customers"),
"dataBind"=>"customerName"
));
?>
My 2 radio choices don't need to come from a datastore. Rather I just need to hard code them.
For text fields, I think I can handle them, but an example would be nice. Any example of a simple form using inputs?