Hi
can anyone tell me difference between button methods, submit and ajax submit?
Thank you
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
POST
GET
I hope this helps you
cheers,
Omkar S wrote:
and also for more information, you can take a look on this documentation more Info
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/
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.