[symfony-users] Re: Symfony 1.2 Admin generator and sfDoctrine problem

2008-11-23 Thread adrive
t change anything in my configuration. > > Why ? > > Thanks > > Bertrand > > -- adrive --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, s

[symfony-users] Re: sfGuardPlugin remember me feature across subdomains

2008-11-04 Thread adrive
, that nobody will review that. I will be happy with any of the possible states. Doesn't matter, wheter it will be closed with wontfix status or whether it will be fixed. -- adrive Ut 4. November 2008 14:45 Thomas Rabaix wrote: > you can have your own copy of sfGuardSecurityUser.class.php

[symfony-users] sfGuardPlugin remember me feature across subdomains

2008-11-04 Thread adrive
onger than year and half, for somebody who will review the ticket. Thanks. -- adrive --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@g

[symfony-users] sfWidgetFormInputFileEditable - unexpected field

2008-10-31 Thread adrive
d in the sfForm::validatorSchema and sfForm::widgetSchema. How should it be used? Thanks. -- adrive --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, se

[symfony-users] Re: sfForms - group validator

2008-10-15 Thread adrive
. Dňa St 15. Október 2008 21:34 adrive napísal: > myForm extends sfForm { > public function setUp() { > ... > $this->validatorSchema['column']->setOption('required', false); > $this->setPreValidator(new > sfValidat

[symfony-users] Re: sfForms - group validator

2008-10-15 Thread adrive
t column is not required $args['vs']['column']->setOption('required', true); return $values; } } I tried also write custom GroupValidator which gets validatorSchema as option, but result is the same as with callback validator. For now I didn't find a way how to

[symfony-users] Re: sfForms - group validator

2008-10-03 Thread adrive
For example I have such forms: class ArticleForm extends sfFormDoctrine { public function setUp() { $this->setWidgets(array( 'id' => new sfWidgetFormInputHidden(), 'title' => new sfWidgetFormInput(array(), array('size'=>80)), 'teaser' => new sfWidgetFormTextar

[symfony-users] sfForms - group validator

2008-10-03 Thread adrive
Hello. I am wondering, if there is any kind of group validator. I have fields which are not required unless one of them is filled. What is the best way to implement this? Can anybody give me some example of how to validate a group in symfony 1.1? Thanks --~--~-~--~~~---