views:

239

answers:

1

I have the following code in html, I cannot get the Function call back of JSON get call. Down is the code in controller. Please Help

 <script type="text/javascript"> 
     $().ready(function() {
         $("#CuitDespachante").typeWatch({ highlight: true, wait: 500, captureLength: -1, callback: finished });
    });

    function finished(txt) {
        $.getJSON('/Documentacion/GetDatosDespachantes', { cuitDespachante: txt },
                            function (data) {
                                alert('You typed: ');
                            }
        );

    };
</script>

public ActionResult GetDatosDespachantes(string cuitDespachante)
        {
            cuitDespachante = cuitDespachante.Replace("-", "").Replace("_", "");
            DepositarioFielWS.DepositarioFielWebService ws = new DepositarioFielWS.DepositarioFielWebService();
            var res = ws.GetDespachante(cuitDespachante);
            if (res.Licencia.CodigoLicencia == DepositarioFielWS.CodigoLicencia.Ok)
            {
                DepositarioFielWS.Despachante desp = new DepositarioFielWS.Despachante();
                desp.Cuit = res.Despachante.Cuit;
                desp.Nombre = res.Despachante.Nombre;


                var respuesta  =new
                {
                    cuit = desp.Cuit,
                    nombre = desp.Nombre

                };
                return Json(respuesta);
            }
            else
            {
                var respuesta = new
                {
                    cuit = cuitDespachante,
                    nombre = "Imposible Realizar Consulta"

                };
                return Json(respuesta);

            }
        }
+3  A: 

I have to add this in the response of the controller, Something new in ASP.NET MVC 2

 return Json(respuesta,JsonRequestBehavior.AllowGet);
Jedi Master Spooky
thx for this information. god, am i happy i found your answear.. i tried so long and never got a response back ;-)
SQueek