Page 1 of 1

html button

Posted: 19 Aug 2013
by dmalikyar
Hello,

I'd like to save a form with my own html button in addition to the default submit button. I tried adding fd.save() and fd.submit(); to the onclick event of the html button but neither worked. After I save the form with my button, I'd like to redirect back to the add new form with passed parameters (querystring) ID, and additional field values from the prior screen. Please advise.

Thanks.

Re: html button

Posted: 20 Aug 2013
by Dmitry Kozlov
Hello,

First, you have to put button to your New form. Next, place the following script to OnClick property of your button:

Code: Select all

fd.onsubmit(function () {
    // Here you have to define URL with your additional query parameters. 
    // Users will be redirected to it after the form submission.
    var source = location.pathname + '?ID=&additionalParams=';

    $("#aspnetForm").attr('action', location.pathname + '?Source=' + 
        encodeURIComponent(source));
    return true;
});

// Submission of the current form
fd.save().click();
Please, pay attention that I put the comment in place where you have to define your query parameters which will be passed to the next new form.