I created a form with almost 20 inputs in it, I have that submit button in the below of those 20 questions at the bottom of the page, I am using form validation on submit, because I am at the bottom of the page when clicking on submit, when I click on submit if any field not filled, need to focus or go to that input which is not filled kindly suggest me.
Hi Priya,You can use ScrollToElement provided by OutsystemUI:ThanksKrishnanand
Hi Priya,
You can still do this using JavaScript, you just to need tweak your code a little bit and provide it with the id of the (input) element you're trying to scroll to:document.getElementById($parameters.elementId).scrollIntoView();
Where $parameters.elementId is the id of the element you're scrolling to, that you passed to the JS action. You can select it from the Widgets list:
(Make sure you fill the Name property of the element, otherwise it won't show up in the Widgets list.)