I'm having a problem getting my form action to process, my url handlers look like this:
private static $url_handlers = array(
'//$Action/$ID/$OtherID' => 'handleMyRequest'
);
I have a form 'myCustomForm' with the action 'doFormAction'
I'm probably not understanding how routing works, I know that the form is somehow assigned as the $Action on submit, because after submitting the site is redirected to:
http://mysite/mypage/myCustomForm
and the form action is not processed. So in 'handleMyRequest' I tried to call 'doFormAction' but that doesn't seem to do anything with the form data. I hope I am explaining this well, any ideas?
Thank you