Change focus on page

0
I do have a homepage which acts more like a website. Showing information read only. But, on the bottom of the page I do have a editable dataview. This causes that the focus of the page goes directly to the bottom of the page instead of starting at the top.   How can I get the focus on the top of the page? Since I don’t have a editable field there, setting the tab index on the first dataview or list doesn’t do the trick
asked
1 answers
2

Solved it myself…. documentation is there for a reason ;-)

Setting the tab index to -1 excludes the element from tab/page navigation.

My first attempts was by setting the tab index higher than the tab index of a list, but that didn’t work out

answered