Last Updated:
21 Mar 2019 17:27
by Dimitar
FIX. RadTextBoxControl - when added to a RadPageViewPage, the control`s caret is not visible after calling the control`s Select method in the SelectedPageChanged event of the page view
Workaround: additionally call the Select method of the text box element
Private Sub RadPageView1_SelectedPageChanged(sender As Object, e As EventArgs)
If Me.RadPageView1.SelectedPage Is Me.RadPageViewPage1 Then
Me.RadTextBoxControl1.Select()
Me.RadTextBoxControl1.TextBoxElement.Select(0, 0)
End If
End Sub