Completed
Last Updated: 07 Dec 2023 12:16 by Davy
Release 2.6.0
Created by: Milind
Comments: 8
Category: TextBox
Type: Bug Report
11

Hello,

 

In the demo page of textbox if I type my name Milind (I have good typing speed), it doesn't show the complete word in textbox. Some of the chars are dropped.(Milind - Miind, Soham - soam, Shevade - Shvae) etc. Even the backspace key on keyboard doesnt seem to work properly. If I type the name at very slow speed I am able to retain all typed chars. It seems to be a bug

Attaching video for reference

Thanks,

 

Milind Shevade

Completed
Last Updated: 31 Oct 2023 12:42 by ADMIN
Release 5.0.0 (15 Nov 2023) (R1 PI1)
Created by: Khaled
Comments: 4
Category: TextBox
Type: Feature Request
6
I would like to use the spellcheck html attribute with my Telerik TextBox
Unplanned
Last Updated: 14 Aug 2023 11:25 by ADMIN
Created by: Christian
Comments: 5
Category: TextBox
Type: Feature Request
14

Hi,

I try to make sure that the user don't need to click the TextBox to gain focus and begin typing.

I have only one TextBox on the page, and it's does not atomatically have focus, - nor can I find a property on the component.

Any ideas :-)

 

/CU

 

Completed
Last Updated: 16 Jan 2023 15:11 by Peter
Release 2.15.0
Duplicated
Last Updated: 22 Sep 2022 09:07 by ADMIN
Created by: Ted
Comments: 3
Category: TextBox
Type: Feature Request
5

It would be nice if the Telerik Blazor team could add "Icon" and "IconClass" parameters to the TextBox control, similar to how the TreeListSearchBox control works, which would allow displaying an icon inside the TextBox control:

The kludge specified in this article does not seem to work anymore, and is also not maintainable, since it requires hacking into the implementation details of the TextBox control: How to add icon to the textbox | Telerik UI for Blazor. This should be abstracted by the TextBox control by adding "Icon" and "IconClass" parameters, like many other Telerik Blazor controls have (e.g., buttons: Blazor Button - Icon | Telerik UI for Blazor).

Completed
Last Updated: 25 Aug 2022 12:24 by Jassen
Release 2.13.0
Created by: Josep Ramon
Comments: 4
Category: TextBox
Type: Bug Report
2
The floating label element has a default width in the CSS, and the custom Width value from the TelerikTextBox Width parameter is not applied to it - it is only set to the input.
Unplanned
Last Updated: 07 Jul 2022 08:47 by Todsapon
Created by: Todsapon
Comments: 0
Category: TextBox
Type: Feature Request
2

The textbox currently does not use the value attribute for value binding. This translates to a delay in setting the value upon initialization of the component, compared to a standard Blazor InputText.

 

<AdminEdit>

The same extends to the NumericTextBox

</AdminEdit>

Unplanned
Last Updated: 22 Feb 2022 07:36 by Roland
Created by: Roland
Comments: 0
Category: TextBox
Type: Feature Request
3
The request is for a TelerikLabel component that can provide automatic association to telerik inputs, and functionalities such as position - top/left/right.
Completed
Last Updated: 07 Feb 2022 09:42 by ADMIN
Created by: Enrico
Comments: 1
Category: TextBox
Type: Bug Report
0

Good morning,

we are using `OnChange` event to catch user input updates when pressing Enter key. Sometimes the event attached valued is not updated.

Here the example: https://blazorrepl.telerik.com/ccaPRPFn26VA0HjW14 , I've attached also a video.

 

 

Completed
Last Updated: 09 Oct 2020 12:54 by ADMIN
Release 2.18.0
Created by: Ben Hayat
Comments: 11
Category: TextBox
Type: Feature Request
50

Hello Team;
This is a question;

I was just looking Blazor Docs and noticed they have several Input Tags that cover most cases. I then check Telerik list that I don't see the following in Telerik offering:
InputTextArea
InputSelect
InputCheckbox

I also checked the roadmap for next year and didn't see them either.

My question is, are plans to cover these any time soon? If yes, what's the approximate time-frame?

Secondly, for the time being, should we use the ones that come with Blazor?

Lastly, is there plan to have a mini editor like TinyMCE that we can let user to enter rich text stored in DB?

Thanks in advance!

..Ben

 

Duplicated
Last Updated: 29 Jun 2020 07:09 by ADMIN

I kind of expect to be able to do something like this:

<TelerikTextBox @bind-Value="@CurrentComment" Label="Comment" Wrap="true" Multiline="true" Resizable="true" Height="200px" Width="100%"></TelerikTextBox>

@code {
    string CurrentComment { get; set; };
}
This will allow the user to have a text area that allows multiple lines, wraps text, and they can resize it if they need more space. I don't see how we can do this with the current textbox.
Completed
Last Updated: 27 May 2020 14:19 by ADMIN
Release 2.14.1

TextBox Bootstrap Focus error

Starting with Telerik Blazor version 2.13 the focus rectangle is not resetting after the Telerik TextBox loses focus.

Attached project reproduces problem.

Duplicated
Last Updated: 28 Apr 2020 17:30 by ADMIN
Created by: Rob
Comments: 3
Category: TextBox
Type: Feature Request
0
Add the ability to define the placeholder attribute on the TextBox control. 
Duplicated
Last Updated: 02 Mar 2020 13:18 by ADMIN
Created by: Denis
Comments: 1
Category: TextBox
Type: Feature Request
1
It would be great if the TelerikTextBox supported the Type parameter for the input element. I need to add a clear button to the input field. Since the TelerikTextBox does not support this feature, I want to use the browser's capabilities - set type = "search". But component does not support this type attribute.
Completed
Last Updated: 19 Feb 2020 11:31 by ADMIN
Release 2.8.0

Hello,

 

When I set the width to any value it has no effect.

 

I am using the boostrap theme:

<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-bootstrap@@latest/dist/all.css" />

Completed
Last Updated: 02 Aug 2019 10:13 by ADMIN
Release 1.5.0
Created by: Andriy
Comments: 1
Category: TextBox
Type: Bug Report
6
Hello!
My example:
<strong>Search: </strong><TelerikTextBox Width="300px"></TelerikTextBox><TelerikButton Icon="search"></TelerikButton>
I can input any width value and I have no any effect.
What's I'm doing wrong?
Thank you.