Tab through Textboxes?

Why doesn’t UE4 have an “On Textbox Clicked” Event under Textboxes? I’m trying to set up a Tab through the textboxes, to make it easier for players to type by hitting tab.

I figured out the answer to my question, in case anyone runs into this problem in the future I’ll post the answer.

Textboxes have a Tab feature built in once clicked, it tabs through the boxes in the order that you’ve got them set in the Widget Designer Hierarchy.

Example:

TextBox2: Password
TextBox1: Username

This causes Tab to stay on password even though you’re hitting the Tab key, because “TextBox2: Password” is above “TextBox1:Username” A simple swap in the Widget Designer Hierarchy fixes this.

Example:

TextBox1: Username
TextBox2: Password