Completed
Last Updated: 16 Jan 2020 08:42 by ADMIN
Release 2.6.1
PP
Created on: 15 Jan 2020 15:03
Category: Grid
Type: Bug Report
0
Cannot move the cursor in a textbox inside a tab strip with the arrows in 2.6.0

This worked in 2.5.1.

Sample repro (focus the textbox and try moving the cursor with the left and right arrows)

<TelerikTabStrip>
    <TabStripTab Title="first tab">

        <TelerikTextBox Value="@TbValue"></TelerikTextBox>

        <input type="text" value="@TbValue" />

    </TabStripTab>
    <TabStripTab Title="second tab">another tab</TabStripTab>
</TelerikTabStrip>

@code{ 
    string TbValue { get; set; } = "lorem ipsum";
}

0 comments