Unplanned
Last Updated: 06 Sep 2017 14:27 by ADMIN
Currently if the MinValue or MaxValue properties are changed on the client, on the server the numeric value is auto-corrected according to the their old value.

Disabling the ViewState can help. Here is a basic example that can be used:

		<telerik:RadNumericTextBox runat="server" ID="rtb1" EnableViewState="false"></telerik:RadNumericTextBox>
		<asp:Button ID="Button1" Text="1 change max value and value with JS" OnClientClick="changeValues(); return false;" runat="server" />
		<asp:Button ID="Button2" Text="2 postback" OnClick="Button2_Click" runat="server" />
		<script>
			function changeValues() {
				var rtb = $find("<%=rtb1.ClientID%>");
				rtb.set_maxValue(100);
				rtb.set_value(100);
			}
		</script>

	protected void Page_Load(object sender, EventArgs e)
	{
		if (!Page.IsPostBack)
		{
			rtb1.MaxValue = 20;
			rtb1.Value = 1;
		}
	}
	protected void Button2_Click(object sender, EventArgs e)
	{
		Response.Write(string.Format("currValue: {0}<br/> maxValue: {1}", rtb1.Value, rtb1.MaxValue));
	}
Completed
Last Updated: 11 Aug 2015 08:33 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 0
Category: InputManager
Type: Feature Request
0

			
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
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: 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: 09 Feb 2022 12:20 by ADMIN
ADMIN
Created by: Daniel
Comments: 1
Category: InputManager
Type: Bug Report
0
If Czech keyboard layout is used it is not possible to enter any numeric value in the control.
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
Completed
Last Updated: 22 Jun 2022 10:37 by ADMIN
Repoduction steps
Alternative 1
1) Browse to http://demos.telerik.com/aspnet-ajax/input/examples/overview/defaultcs.aspx
2) Click on Phone field -> whole field gets selected
3) Enter 'a' -> One time red flashing border and caret moves 1 position
4) Press 'a' again -> One time red flashing border and caret does not move

Alternative 2
1) Browse to http://demos.telerik.com/aspnet-ajax/input/examples/radmaskedtextbox/firstlook/defaultcs.aspx
2) Click on IP address field -> whole field gets selected
3) Enter 'a' -> Caret moves 1 position, no one time flash of border
4) Press 'a' again -> One time red flashing border and caret does not move

Expected behaviour at step 3 in both cases:
One time red flashing border and caret should be at first position
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.
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>
Declined
Last Updated: 29 Sep 2015 13:01 by ADMIN
Completed
Last Updated: 09 Jul 2015 14:42 by ADMIN
Completed
Last Updated: 01 Aug 2013 14:06 by ADMIN
Completed
Last Updated: 21 Mar 2014 11:38 by ADMIN
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
Completed
Last Updated: 03 Jun 2013 13:22 by ADMIN