I create a simple EntryElement "eNote" and add it to a Section. Super simple.
Section secNote = new Section ("Notes");
eNote.AutocapitalizationType = UITextAutocapitalizationType.None;
eNote.AutocorrectionType = UITextAutocorrectionType.No;
eNote.KeyboardType = UIKeyboardType.ASCIICapable;
secNote.Add (eNote);
We type in a sentence like this:

Then when I try to add the text "I Like" before "Unity" by tapping before the "U", the first letter gets entered, but the rest gets put at the end of the text. The result is we can't edit text.
