This question is locked. New answers and comments are not allowed.
When I use telerikinput: radentry, using the cursorposition attribute has no effect, but it takes effect when the cursorposition attribute is used in xamarin's native entry
<telerikInput:RadEntry x:Name="AAAAA"/>
<Entry x:Name="BBBB" />
AAAAA.CursorPosition = 0;
BBBB.CursorPosition = 0;