When we type on the TextField, if the text is bigger than the TextField, the cursor leaves the screen as I keep typing, i.e. I don’t see the cursor nor the letters that I just typed.
Shouldn’t it always have the cursor viewable (e.g. if I did cmd+right arrow, it should “scroll” to the right of the text)?
Actually… that doesn’t work for all cases. Isn’t there just some way I can get the textcursor position? There is only one “active” text input field that can/should be active at a time, and that input field should know what string it contains, and since it is rendering a cursor, it must know what the index is. Where do I get that from? I know I could keep going through all these calculations and conditionals, but seriously… this textcursor index should just be available.
This sounds like something i would like to have, too. What I want is for the text string to scroll to the left while typing a long string and the cursor remains pinned at the right edge.
Me three! The text cursor string index should be an accessible property that we can control, if desired. Either that, or it should not be allowed to disappear off the edge of the textfield. This is just a standard these days that users expect. Lets give them what they are used to!