Does the Select event of the SFListbox ever fire?

I have a list box as follows in 18.2.48 


       <SfListBox @ref="listBoxObj"  @bind-Value="SelectedAnswers" DataSource="@Answers" TItem="Answer" TValue="int[]" >
                        <ListBoxSelectionSettings Mode="@SelectMode"></ListBoxSelectionSettings>
                        <ListBoxFieldSettings Text="DI" Value="DI"></ListBoxFieldSettings>
                        <ListBoxEvents TValue="int[]" ValueChange="OnValueChanged" Select="OnAnswerSelect"></ListBoxEvents>
                        <ListBoxTemplates TItem="Answer">
                            <ItemTemplate>
                                    <span>@answer.Label</span>
                            </ItemTemplate>
                        </ListBoxTemplates>
                    </SfListBox>


I can see that  the ValueChange event fires but never the Select event.  Is that a bug?

Thanks


1 Reply

MK Mohan Kumar Ramasamy Syncfusion Team August 22, 2020 07:13 AM UTC

Hi Joseph, 
 
We have checked your reported query, we would like to let you know that currently ValueChange event available in ListBox Component and not for Select event in our Listbox. 
 
Please let us know, if you need any further assistance. 
 
Regards, 
Mohankumar R 


Loader.
Up arrow icon