Zend_Json::decode returning null
- by davykiash
Am trying to validate my form using an AJAX call
$("#button").click(function() {
    $.ajax({                    
        type: "POST",
        url: "<?php echo $this->baseUrl() ?>/expensetypes/async",
        data: 'fs=' + JSON.stringify($('#myform').serialize(true)),                 
        contentType: "application/json; charset=utf-8",
        dataType: "json"
        });
    });
On my controller my code is as follows
//Map the form from the client-side call
        $myFormData = Zend_Json::decode($this->getRequest()->getParam("fs") 
                            ,Zend_Json::TYPE_ARRAY);
        $form = new Form_Expensetypes();
        $form->isValid($myFormData);
My problem is that I cannot validate since Zend_Form::isValid expects an array
Am not quite sure wether the problem is at my serialisation at the client end or Zend_Json::decode function does not function with this kind of JSON parsing.