Unplanned
Last Updated: 10 Nov 2023 13:13 by ADMIN
Ishani
Created on: 10 Dec 2020 08:41
Category: ComboBox
Type: Feature Request
1
ComboBox: Text Changed event
I want to update ItemsSource on textchanged event. 
2 comments
ADMIN
Didi
Posted on: 10 Nov 2023 13:13

Hi,

There isn't an update on this item. Status is still unplanned.

For example you can use the property changed event and check if the property is Text:

private void RadComboBox_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
    if(e.PropertyName == "Text")
    {
// your logic here
    }
}


<input:RadComboBox PropertyChanged="RadComboBox_PropertyChanged" />

Regards,
Didi
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Ishani
Posted on: 09 Nov 2023 17:01

Hello,

Any update on when telerik is planning for his event? Can you please suggest a work around for value text changed event? I have to bind datasource based on the value entered.

 

Thank you, Ishani