[symfony-users] Re: Use event dispatcher on asynchronous mode

2010-04-09 Thread romain godefroy
adapted from this about asynchronous http post : http://petewarden.typepad.com/searchbrowser/2008/06/how-to-post-an.html &$val) { if (is_array($val)) $val = implode(',', $val); $post_params[] = $key.'='.urlencode($val); } if($post_params) $post_string = implode('&',

[symfony-users] Re: How to implement a basic filter on frontend with Doctrine sf1.4??

2010-03-26 Thread romain godefroy
You need to add the form filter in your template : then modify your action: public function executeIndex(sfWebRequest $request) { $this->formFilter = new myModelFilter(); if($request->isMethod('post')) { $this->formFilter->bind($request->getParameter($this->formFi

[symfony-users] Re: problems with embedRelation with a self related m:n

2010-03-04 Thread romain godefroy
hi, Have you tried to defined the relation with type: many I don't know if it could change anything for you but it should be test ? On 3 mar, 20:56, axel at wrote: > I have a list of persons, and an m:n relation that relates one person > with several other persons: > > Person: >   columns: >