Declined
Last Updated: 17 Feb 2015 11:42 by ADMIN
ADMIN
Created by: Nikolay Rusev
Comments: 2
Category: InputManager
Type: Feature Request
18

			
Completed
Last Updated: 28 Mar 2022 08:20 by ADMIN
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
Unplanned
Last Updated: 14 Jun 2021 14:01 by ADMIN
Title says it all really. The current functionality is clunky and doesn't persist and it should.
Unplanned
Last Updated: 11 Jun 2021 09:40 by ADMIN
A property to handle that would be very convenient. This way developers could be able to restrict the number of rows that the user can type. Something like MaxRowNumber.

Additionally, a property MaxColumnNumber would be also useful to restrict the length of each row. 
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));
	}
Unplanned
Last Updated: 07 Feb 2018 23:50 by Uri
RadTimePicker :
           Currently the time picker with time interval 5 minutes shows a large list. Instead of large list display Hours 1 to 12 with AM and PM and Minutes 05 to 55 like the image enclosed. 
Completed
Last Updated: 21 Mar 2014 11:38 by ADMIN
Completed
Last Updated: 03 Jun 2013 13:22 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.
Declined
Last Updated: 20 Oct 2015 21:51 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 1
Category: InputManager
Type: Feature Request
1

			
Declined
Last Updated: 29 Jul 2016 12:06 by ADMIN
Won't Fix
Last Updated: 16 Jul 2015 08:50 by ADMIN
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.
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. 
Completed
Last Updated: 05 Aug 2015 11:00 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 0
Category: InputManager
Type: Feature Request
1
If multiline textbox has set text that starts with break lines, on every postback one break line disappears form the text.
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: 02 Oct 2019 15:04 by ADMIN
Created by: mqsash
Comments: 2
Category: InputManager
Type: Feature Request
1
When RadText boxes have EnableAriaSupport=True and also have a tooltip set, the JAWS form fields dialog should list the control along with any text that might be in the textbox.
Currently it does not list the text.
see following support ticket for more details:  https://www.telerik.com/account/support-tickets/view-ticket?threadid=1081024
1 2