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
close icon

Updating ItemsSource in SfMultiColumnDropDownControl removes the Search Text Entered

I am updating my ItemsSource on key down event. But this is removing the text I have entered. Please let me know how to solve this?

[CODE]
 <syncGrid:SfMultiColumnDropDownControl AllowAutoComplete="True"
                                               AllowIncrementalFiltering="True" AutoGenerateColumns="False"
                                               AllowImmediatePopup="True" AllowNullInput="True"  
                                               DisplayMember="Name" 
                                               x:Name="AutocompleteMultiselect"
                                               ValueMember="ApplicationID" 
                                               Grid.Column="2"  Grid.Row="0"
                                               
                                               ItemsSource="{Binding Path=SearchResults}"
                                               Height="30" Width="400"      
                                               Text="{Binding SearchText}"
                                                
                                              >
            <syncGrid:SfMultiColumnDropDownControl.Columns>
                <syncGrid:GridTemplateColumn HeaderText="Icon" Width="80">
                    <syncGrid:GridTemplateColumn.CellTemplate>
                        <DataTemplate>
                            <Image Source="ms-appx:///Assets/Icon_Male.png" Stretch="Uniform" Margin="5" Width="12" />
                        </DataTemplate>
                    </syncGrid:GridTemplateColumn.CellTemplate>
                </syncGrid:GridTemplateColumn>
                <syncGrid:GridTextColumn HeaderText="Id" Width="120" MappingName="ApplicationID" />
                <syncGrid:GridTextColumn HeaderText="Name" Width="250"  MappingName="Name" />
            </syncGrid:SfMultiColumnDropDownControl.Columns>
            <Interactivity:Interaction.Behaviors>
                <Core:EventTriggerBehavior EventName="KeyDown">
                    <Core:InvokeCommandAction Command="{Binding UserSelectionChangedCommand}"
CommandParameter="{Binding SearchText,ElementName=AutocompleteMultiselect}" />
                </Core:EventTriggerBehavior>
            </Interactivity:Interaction.Behaviors>
        </syncGrid:SfMultiColumnDropDownControl>
[/CODE]

1 Reply

SR Sivakumar R Syncfusion Team April 26, 2014 06:28 AM UTC

Hi Puneet,

We have tried to replicate the issue by changing the ItemsSource on Key press but we are not able to replicate the reported issue in our end. Could you please check the below sample and let us know more details on your requirement,

Code snippet:

       protected override void OnAttached()

        {

            this.AssociatedObject.PreviewTextInput += AssociatedObject_PreviewTextInput;

        }

 

        private void AssociatedObject_PreviewTextInput(object sender, System.Windows.Input.TextCompositionEventArgs e)

        {

            var dropDown = sender as SfMultiColumnDropDownControl;

            var dataContext = dropDown.DataContext as MovieRepositoryViewModel;

            dataContext.MoviesLists.Clear();

            dataContext.MoviesLists = new NewItem();

        }

 

        protected override void OnDetaching()

        {

            this.AssociatedObject.PreviewTextInput -= AssociatedObject_PreviewTextInput;

        }

Please let us know if you have any queries,

Regards,

Sivakumar


Attachment: MultiColumnDropDownDemo_531d14c7.zip

Loader.
Live Chat Icon For mobile
Up arrow icon