[symfony-users] Re: Saving some data during insert, update, and deleting object?

2010-03-22 Thread verox
Any ideas guys? -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com 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@googlegroups.com To

[symfony-users] Re: Saving some data during insert, update, and deleting object?

2010-03-22 Thread verox
values on object Regards, Benoit Le 22 mars 2010 à 12:56, verox pawel.rz...@gmail.com a écrit : Any ideas guys? -- If you want to report a vulnerability issue on symfony, please send   it to security at symfony-project.com You received this message because you are subscribed

[symfony-users] Saving some data during insert, update, and deleting object?

2010-03-21 Thread verox
Hello guys, I have this i schema: Compedium: actAs: Timestampable: Sortable: DmVersionable: columns: name: { type: string(255), notnull: true } members:{ type: clob, extra: ckeditor } is_active: { type: boolean, notnull: true,

[symfony-users] Re: handle processForm()

2010-02-27 Thread verox
I'm trying this while creating new object. Overwrite protected function processForm(sfWebRequest $request, sfForm $form) -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the

[symfony-users] Re: handle processForm()

2010-02-26 Thread verox
Anybody? -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com 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@googlegroups.com To

[symfony-users] handle processForm()

2010-02-25 Thread verox
Hello, Got some problem, Have name and letter in table, both string. I've generate admin page, now I'm trying to set letter (first letter of name) Tried this: $form-getObject()-setLetter(strtoupper(substr($form-getObject()- getName(), 0, 1))); should work for me, but getName() returns NULL,