Aleksander Wilski co to was obchodzi
Temat: chcialbym samodzielnie stworzyc formularz, ale mi nie...
Jestem nowy w symfony.Mam tabelę:
AUTHORS
id (Primary Key, autincrement)
name
surname
Chciałbym całkowicie sam zrobić formularz.
Man AddAuthorForm.class.php:
co to was obchodzi co to was obchodzi edytował(a) ten post dnia 15.02.09 o godzinie 08:47
class AddAuthorForm extends sfForm
{
public function configure()
{
$this->setWidgets(array(
'id' => new sfWidgetFormInputHidden(),
'name' => new sfWidgetFormInput(),
'surname' => new sfWidgetFormInput(),
));
$this->setValidators(array(
'id' => new sfValidatorDoctrineChoice(array('model' => 'Authors', 'column' => 'id', 'required' => false)),
'name' => new sfValidatorString(array('max_length' => 20)),
'surname' => new sfValidatorString(array('max_length' => 30)),
));
$this->widgetSchema->setNameFormat('data[%s]'); }
}