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('&',
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
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:
>