Completed
Last Updated: 20 Sep 2016 06:53 by Daniel
Created by: Daniel
Comments: 0
Category: InputManager
Type: Bug Report
2
The PasswordStrengthChecker doesn't update if you right-click and paste using only the mouse.
Completed
Last Updated: 20 Sep 2016 06:36 by ADMIN
ADMIN
Created by: Venelin
Comments: 0
Category: InputManager
Type: Feature Request
0
Here is the basic code:
<telerik:RadTextBox ID="RadTextBox1" runat="server" TextMode="MultiLine" Enabled="False"> </telerik:RadTextBox>
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: 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
Declined
Last Updated: 29 Jul 2016 12:06 by ADMIN
Completed
Last Updated: 20 Jul 2016 14:08 by ADMIN
The RadTextBox (and other input controls as appropriate) should have an aspx property to automatically trim leading & trailing whitespace from user input. This will help ensure that good quality data is passed to the database.

The only way this can currently be done is to custom code "mytextbox.Text.Trim();" for every control on the page, before the property is sent to the database.
Completed
Last Updated: 07 Jul 2016 11:28 by ADMIN
Created by: Marek Svrcina
Comments: 1
Category: InputManager
Type: Feature Request
0
RadInputManager add property InputType
Declined
Last Updated: 06 Jun 2016 14:09 by ADMIN
Created by: parlardin
Comments: 1
Category: InputManager
Type: Bug Report
0
i use RequiredFieldValidator to validate radtextbox,SetFocusOnError="true"
telerik version:2012Q3

first ,enter " ",validate event fire, display “notnull”
sencond,enter “123” ,radtextbox not set value,validate event not fire

asp.net textbox is ok

code:
<telerik:RadTextBox ID="txtAppId" runat="server" Width="300" AutoPostBack="false">
        </telerik:RadTextBox>
        <%--<asp:TextBox ID="txtAppId" runat="server" Width="300" AutoPostBack="false">
        </asp:TextBox>--%>
        <asp:RequiredFieldValidator ID="TextBoxRequiredFieldValidator" runat="server" Display="Dynamic"
            ControlToValidate="txtAppId" Text="NOT NULL" ErrorMessage="NOT NULL" SetFocusOnError="true">                          
        </asp:RequiredFieldValidator>
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 )
Unplanned
Last Updated: 15 Apr 2016 04:39 by Eric
The RadMaskedTextBox DisplayMask does not work properly in case "*" is used in it.
Unplanned
Last Updated: 14 Apr 2016 12:31 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 0
Category: InputManager
Type: Feature Request
0
 DateInputSetting in InputManager does not behave as expected.

Use  the code and steps below:

<telerik:RadInputManager ID="RadInputManager1" runat="server">
    <telerik:DateInputSetting BehaviorID="BehaviourFormatHeure" DateFormat="HH:mm:ss" Validation-ValidationGroup="GroupValidation">
        <TargetControls>
            <telerik:TargetInput ControlID="txtHeureDebut"></telerik:TargetInput>
            <telerik:TargetInput ControlID="txtHeureFin"></telerik:TargetInput>
        </TargetControls>
    </telerik:DateInputSetting>
</telerik:RadInputManager>


When  type 5 and quit the input field, it works : 05:00:00 appears
When  type 512 and quit the input field, it works too : 05:12:00 appears
When  type 05:12:27 and quit the input field, it works again : value is unchanged
But when type 051227 and quit the input field, an error is indicated


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;
}
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);
}
Completed
Last Updated: 29 Jan 2016 15:20 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: InputManager
Type: Bug Report
0

			
Declined
Last Updated: 11 Dec 2015 13:03 by ADMIN
Created by: Fit2Page
Comments: 1
Category: InputManager
Type: Feature Request
1
To let the applicable keyboard configuration on iOS popup, the HTML5 type attribute on the different inputs should vary. So RadDateInput should have type=date and RadNumericTextBox should have type=number
Completed
Last Updated: 12 Nov 2015 08:37 by Andy
Created by: Andy
Comments: 0
Category: InputManager
Type: Feature Request
1
RadMaskedTextBox has a RequireCompleteText property that makes it a requirement that the full mask of the input be satisfied. The RadInputManager MaskedTextBoxSetting does not contain the same property. Please add this property with the same functionality to the MaskedTextBoxSetting.
Completed
Last Updated: 30 Oct 2015 09:40 by ADMIN
Declined
Last Updated: 20 Oct 2015 21:51 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 1
Category: InputManager
Type: Feature Request
1

			
Completed
Last Updated: 01 Oct 2015 12:18 by Akesh Gupta
ADMIN
Created by: Milena
Comments: 2
Category: InputManager
Type: Bug Report
8