Scroll the snippet upward to a particular point

0
Hello, There is a scenario where there is a page where we are using a snipper. In that snippet, we have some fields and buttons. On the click of the button (at the bottom of snippet), it need to scrolled upward to particular field. How an I achieve it in mendix. Please help me out.   Thanks, Trishla
asked
1 answers
0

Hi Trishla,

you can try scrollTo in webactions

 

Scroll to: Scrolls the window to make a targeted element visible. For this action, you need to provide a target selector. This target could be an element containing a class (for example, .mx-class-name.my-class-name), an HTML element (for example, tddiva), or an element ID (for example, #my-element-id).

 

refer the below doc:

https://docs.mendix.com/appstore/modules/web-actions/

answered