This is a migrated thread and some comments may be shown as answers.

TagHelper for Kendo TextBox+For

5 Answers 575 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Giuseppe
Top achievements
Rank 1
Giuseppe asked on 05 Mar 2018, 08:17 AM

Hi

Does Html.Kendo().TextBox+For have a TagHelper as well? Can't find any documentation about it.

 

Thanks

Giuseppe

 

5 Answers, 1 is accepted

Sort by
0
Veselin Tsvetanov
Telerik team
answered on 08 Mar 2018, 07:24 AM
Hi Giuseppe,

Since the R1 SP1 2018.1.221 release, the for syntax is available for a number of Telerk .NET Core TagHelpers. The inputs and the drop-downs in the suite offer such configuration of the widgets. The ComboBox, for example should be configured in the following way:
<kendo-combobox for="SelectedValue"
                filter="FilterType.Contains"
                placeholder="Select ration group..."
                datatextfield="Text"
                datavaluefield="Value"
                bind-to="Model.Items">
</kendo-combobox>

Regards,
Veselin Tsvetanov
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Giuseppe
Top achievements
Rank 1
answered on 08 Mar 2018, 07:34 AM

Hi Veselin

Thanks for your reply. Yes for DropDown there's documentation and demo.

But I was asking about TextBox. I I can't find anything.

Best,

Giuseppe

0
Veselin Tsvetanov
Telerik team
answered on 08 Mar 2018, 07:54 AM
Hi Giuseppe,

Currently the Telerik UI for ASP.NET Core suite does not offer a dedicated TextBox or TextboxFor TagHelpers. The MaskedTextBox (<kendo-maskedtextbox for...) with no mask could be used instead:
<kendo-maskedtextbox for="SelectedValue"></kendo-maskedtextbox>

Regards,
Veselin Tsvetanov
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Giuseppe
Top achievements
Rank 1
answered on 08 Mar 2018, 08:03 AM

Hi Veselin

Could you put it as a feature request? We kinda use textbox a lot :)

Best

Giuseppe

 

 

0
Veselin Tsvetanov
Telerik team
answered on 12 Mar 2018, 12:32 PM
Hello Giuseppe,

Currently, we do not have immediate plans to provide a dedicated TextBox / textBoxFor tag helper. Therefore, I would suggest you to log your idea on our Feedback portal. Based on the support it receives from the community, we will decide on whether to proceed with its implementation or not.

Meanwhile, you could use the default asp tag helper with the appropriate Kendo class:
<input asp-for="SelectedValue" type="text" class="k-textbox"/>

Regards,
Veselin Tsvetanov
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
General Discussions
Asked by
Giuseppe
Top achievements
Rank 1
Answers by
Veselin Tsvetanov
Telerik team
Giuseppe
Top achievements
Rank 1
Share this question
or