Good Day,
I have a form that is a little long; how do i add a anchor to move to the top of the form? Is it even possible on Nintex forms?
Thanks,
Jennifer
Currently there is no an action or control to do it. You should write some javascript.
You can do that with CSS and a control.
1. Add a Rich Text control on the top most of your form.
2. Double click the control, in the Text property, click on the </> icon (View HTML), and key in this:
<a name="top"></a>
"></a>
3. Drop another Rich Text control at the bottom of your form (or anywhere, it doesn't matter).
4. Do the same to the new control as in step 2, but key in this instead:
<div class="GoToTop"><a class="ms-addnew" href="#top">Go to top</a></div>
5. In Settings (from Ribbon) -> Custom CSS, add this in:
.GoToTop { width: 100px; position: absolute; bottom: 10px; right: 30px; text-align: center; padding: 10px; background: rgba(0,0,0,.5); color: #fff; } .GoToTop a{ color: #fff !important; }
Hope it help.
Thanks so much, I am going to test it out right now!
Have a great day,
Jennifer
It does not work for me..