1104
Views
4
Comments
Solved
Diff bw submit and ajax submit
Question

Hi

can anyone tell me difference between button methods, submit and ajax submit?

Thank you

2022-02-25 19-42-59
Srinivas K Singadi
Solution

Hello Omkar, 

here am adding the differences, 

Submit: the inputs are submitted. Uses the POST HTTP method;
Ajax Submit: all the inputs you use in the Destination logic are asynchronously submitted (using Ajax techniques) while keeping the state of the screen;
Navigate: the inputs are ignored. Uses the GET HTTP method

I hope this helps you


cheers,



2022-02-25 19-42-59
Srinivas K Singadi

Omkar S wrote:

Hi

can anyone tell me difference between button methods, submit and ajax submit?

Thank you

and also for more information, you can take a look on this documentation more Info


2019-11-11 17-10-24
Manish Jawla
 
MVP

Omkar S wrote:

Hi

can anyone tell me difference between button methods, submit and ajax submit?

Thank you

HI Omkar,

i would suggest you to go through the below learning:

it will help you a lot in understanding lots of concepts.

https://www.outsystems.com/learn/courses/114/developing-web-apps-outsystems-11/


2021-09-10 14-03-53
Salman Ansari

HI,

Please see below comments:-

- Submit is "originally" used to post your form to your post and indeed it will hit the prep. mostly used for file-uploading and the old-school way of transporting data.

- Ajax-Submit is for speeding up things and thus NOT hitting the preparation.


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.