This question is locked. New answers and comments are not allowed.
HI -
I created a GridView Cell template with a TextBox with MaxLength = 30, When I reach the 30th character, and I try to type in a letter the focus moves to the next column, is that by design?
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBox VerticalAlignment="Center" MaxLength="30" HorizontalAlignment="Stretch" Text="{Binding NickName, Mode=TwoWay}" TextWrapping="Wrap" MaxWidth="200"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
I would think that the focus should stay on the current column (textBox) and not let me type after the 30th character?
Thanks, Shilpi
I created a GridView Cell template with a TextBox with MaxLength = 30, When I reach the 30th character, and I try to type in a letter the focus moves to the next column, is that by design?
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBox VerticalAlignment="Center" MaxLength="30" HorizontalAlignment="Stretch" Text="{Binding NickName, Mode=TwoWay}" TextWrapping="Wrap" MaxWidth="200"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
I would think that the focus should stay on the current column (textBox) and not let me type after the 30th character?
Thanks, Shilpi