column dropdown valuechange not fired from version 19.2.x all is correct in version 19.1.0.69

hi team when popup items is show can't select item. next code is functional in version 19.1.0.69 but not from 19.2.x, in 19.2.x versions filter not start ValueChange event, in edit column i can't select item, the popup is show with correct items

<GridColumn Field=@nameof(PromePromotionTypeDto.CollectiveTypeStatus) HeaderText="Estado" Width="150">

                    <Template>

                        @(((enPromeCollectiveTypeStatus)(context as PromePromotionTypeDto).CollectiveTypeStatus).ToEnumString())

                    </Template>

                    <FilterTemplate>

                        <SfDropDownList TValue="string" TItem="string" DataSource="@(EnumHelper.GetEnumMemberValues<enPromeCollectiveTypeStatus>())">

                            <DropDownListEvents ValueChange="@ChangeEstadoFilter" TValue="string" TItem="string"></DropDownListEvents>

                        </SfDropDownList>

                    </FilterTemplate>

                    <EditTemplate>

                        <SfDropDownList TItem="string" TValue="string" @bind-Value="@ddlState" DataSource="@(EnumHelper.GetEnumMemberValuesForEdit<enPromeCollectiveTypeStatus>())">

                        </SfDropDownList>

                    </EditTemplate>

                </GridColumn>


ddlstate is defined how: public string ddlState { get; set; } regards


3 Replies

RN Rahul Narayanasamy Syncfusion Team August 10, 2021 03:49 AM UTC

Hi Sergio, 

Greetings from Syncfusion. 

We have validated your query and we suspect that you are facing the problem while changing the dropdown values in FilterTemplate. We have checked the reported problem at our end and we could not reproduce the problem. The ValueChange  event is fired properly while changing the dropdown values. Find the below sample for your reference. 


Also, we need more details regarding the reported problem. Could you please share the below details. It will be helpful to validate and provide a better solution. 

  • Full page code snippets.
  • Reproduce the problem in the provided sample and revert back to us.
  • Did you faced any exception while changing the values?
  • Share a simple reproduceable sample if possible.

Regards, 
Rahul 
 



SC Sergio Cabello replied to Rahul Narayanasamy August 23, 2021 09:03 AM UTC

hi Rahul, 

sorry for late response, i was on holidays,

i see new version 19.2.56 after upgrade from 19.2.51 and all is working fine with dropdowns, think that a bug was in previous versions 19.2.x


thank's for all



RN Rahul Narayanasamy Syncfusion Team August 24, 2021 04:51 AM UTC

Hi Sergio, 
 
Thanks for the update. 
 
We are happy to hear that the problem was resolved after upgrading to latest version. Please get back to us if you need further assistance. 
 
Regards, 
Rahul 


Loader.
Up arrow icon