Won't Fix
Last Updated: 08 Jun 2022 08:11 by ADMIN
When TextBox with set MaxLength property has an EmptyMessage longer than MaxLength the form is not submitted in IE11.

Steps to reproduce:
1. Run the following code in IE11:

        <telerik:RadTextBox runat="server" ID="txbRelatedMessageVersion" Width="200px"
            MaxLength="10" EmptyMessage="Message Version" />

        <telerik:RadButton ID="amendBtn" runat="server"
            Text="Submit Page />

2. Click inside RadTextBox

3. Click the button

Result: the empty message is considered as a not valid value and the page is not submitted. Changing the MaxLenght to 15 will allow to submit the page successfully.
Won't Fix
Last Updated: 16 Jul 2015 11:54 by Andy
ADMIN
Created by: Kostadin
Comments: 2
Category: InputManager
Type: Feature Request
1
Due to a bug in the WebKit-based browsers this issue could not be fixed since it will introduce another bugs in those browsers. 
Won't Fix
Last Updated: 16 Jul 2015 11:54 by Andy
RadNumericTextBox with SelectionOnFocus="SelectAll" doesn't work in Chrome.

Expected behavior: when textbox focuses, the text in the input should all be selected.
Actual behavior: the cursor jumps to the end of the text in the input
Won't Fix
Last Updated: 20 Jul 2015 14:14 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: InputManager
Type: Feature Request
0

			
Won't Fix
Last Updated: 16 Jul 2015 08:50 by ADMIN
Won't Fix
Last Updated: 24 May 2016 14:53 by Doug
ADMIN
Created by: Daniel
Comments: 3
Category: InputManager
Type: Bug Report
3
(limitation on Windows Phone - onkeypress event is not fired and the essential part of the RadMaskedTextBox code cannot be executed at the right time )
Won't Fix
Last Updated: 11 Aug 2016 11:24 by Krishnaprabhuraja
Created by: Krishnaprabhuraja
Comments: 0
Category: InputManager
Type: Bug Report
1
Hi,

Enabling/disabling RadTextBox in client-side does not not seem to reflect same with the corresponding button control.

http://www.telerik.com/forums/radtextbox-disable-when-click-radio-button

Thank you,
Krishna Raja
Won't Fix
Last Updated: 25 Feb 2016 14:05 by ADMIN
It is browser bug, and the only possible fix we could do is to it by cancel the row event/stop propagation. But in this case we will broke the templates of the calendar, and they will not work anymore. Also could lead to some problems with the pickers and all places where the calendar is inside scrollable/drag-drag drop/ containers and the event need to bubble. So this will stay as limitation. In case the calendar is not used inside containers that have click interactions, this workaround is suggested for solving the issue:

var cal = Telerik.Web.UI.Calendar.CalendarView.prototype;
cal._och = cal._onClickHandler;
cal._onClickHandler = function (ev) {
    this._och(ev);
    $telerik.cancelRawEvent(ev);
}
Won't Fix
Last Updated: 09 Aug 2016 12:26 by Blas
Created by: Blas
Comments: 5
Category: InputManager
Type: Feature Request
6
Using RadNumericTextBox in a mobile website doesn't pop up numeric keyboard in iPad. We're developing a website where the user has to enter a lot of numeric information and it has to choose the numeric pad each time it enters a new numeric field.

I know that using RadTextBox and Inputtype solves this problem, but I mainly use RadNumericTextBox because it allows to specified validation like min and max values to each field.

Our sales team solution is featured to be use in mobile devices thanks to the MetroTouch theme but this behaviour with numeric fields has got many negative feedbacks of our mobile users.

Thanks in advanced
Roberto
Won't Fix
Last Updated: 11 Mar 2016 13:26 by ADMIN
This issue is related to a specific browser bug. In this case Internet Explorer does not allow changing the text alignment with JS. However, to workaround it please use the following CSS rule:

html .RadInput .riTextBox {
    text-align: right;
}

For the specific state on the control you can add the corresponding CSS class (riEnabled / riFocused / riHover) on the same selector

html .RadInput .riTextBox.riEnabled {
    text-align: right;
}