thecodemine / formwizard

jQuery plugin based on top of jQuery UI which turns a form into a multistep wizard. Integrates with the jQuery form plugin for AJAX submission of the form, the validation plugin for client side validation and the BBQ plugin for enabling the browsers back and forward buttons.
140 stars 54 forks source link

success not called on remoteAjax #14

Closed mastershadow closed 13 years ago

mastershadow commented 13 years ago

Hello! I'm facing a little problem here. Seems success is never called as it always proceed to the next step. Even putting a breakpoint it doesn't stop in the function.

        remoteAjax : {
            'segnalazione-nonloggato': {
                url : "/utente/registrazione", 
                dataType : 'json',
                beforeSend : function () {
                    $('#loadingDialog').dialog('open');
                },
                complete: function(xhr) {
                    $('#loadingDialog').dialog('close');
                },
                success : function(data) {
                    if (data.id !== null) {
                        return true;
                    }
                    return false;
                }
             }
        }
thecodemine commented 13 years ago

Hi,

is this still an open issue for you? You have marked it as closed - so I guess you found a solution?

bilics commented 11 years ago

Hi,

I am having this issue as well.

Any ideas on how to fix this ?

Thanks

thecodemine commented 11 years ago

Hi,

Would you be able to provide some code that I can debug, or a link to your implementation?

Br, Jan

----- Reply message ----- Från: "bilics" notifications@github.com Till: "thecodemine/formwizard" formwizard@noreply.github.com Rubrik: [formwizard] success not called on remoteAjax (#14) Datum: tis, jun 25, 2013 22:00 Hi,

I am having this issue as well.

Any ideas how to fix this ?

Thanks

— Reply to this email directly or view it on GitHub.