We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

FilterBar Combobox

Hi Support,

we use a datagridcontrol with a filterbar.
Some filter cells are defined as a Combobox.
We need access of the Combobox to register the selectedchanged Event.

Is there a way to achieve this?

Thank you in Forward

Andreas Löwe





3 Replies

SM Saravanan M Syncfusion Team July 4, 2014 10:19 AM UTC

Hi Andreas,

 We are sorry for delay causes,

 You can use DropDownSelectionChanged event , when you select the item from Combo Box in Filter Bar cell. Please refer the below code snippet to hook the event.

 Code snippet[C#]:

this.dataGrid.DropDownSelectionChanged += dataGrid_DropDownSelectionChanged;

 void dataGrid_DropDownSelectionChanged(object sender,GridCellComboValueChangedEventArgs args)

{

            //throw new NotImplementedException();

 

Please let us know if you have any queries,

Regards,

Saravanan.M



AL Andreas Löwe July 4, 2014 11:40 AM UTC

Hi Saravanan,

thank you for the solution. It's works.
We needed it, because the FilterChanged Event don't fire if the Combobox is return to the value '(All)'

We persist the filter in case of refreshing the itemsource.
Is it possible to fire the event, even when the filter removed?

Best regards

Andreas




AN Ashok N Syncfusion Team July 21, 2014 01:02 PM UTC

Hi Andreas,

 

We were able to reproduce the problem and have logged defect report regarding this. A support incident to track the status of this defect has been created under your account. Please log on to our support website to check for further updates:

 

https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents

 

Please let me know if you have any questions.

 

Thanks,

Ashok


Loader.
Up arrow icon