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

DropDownList Tag Helper Events?

1 Answer 751 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 16 May 2019, 07:58 PM

Does the drop down list tag helper have events?  I can't seem to find documentation anywhere on events.  I want to take action when selected or changed.

<kendo-dropdownlist name="products" filter="FilterType.StartsWith"></kendo-dropdownlist>

 

The examples in the link below only cover the HTML Helper.

https://demos.telerik.com/aspnet-core/dropdownlist/events

1 Answer, 1 is accepted

Sort by
1
Accepted
Ivan Danchev
Telerik team
answered on 21 May 2019, 09:51 AM
Hello John,

The UI for ASP.NET Core wrappers have all the widget events they wrap available to them (see the Handling Widget Events section of the tag helpers documentation). The event in question can be attached like this:
<kendo-dropdownlist name="products" filter="FilterType.StartsWith" on-change="changeEvent"></kendo-dropdownlist>

The DropDownList's configuration, methods and events you can find in its API documentation.

Regards,
Ivan Danchev
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
DropDownList
Asked by
John
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or