@@ -19,7 +19,7 @@ By default, you can select only one item at a time from the dropdown, as the def
1919
2020{% tabs %}
2121{% highlight xml %}
22- <syncfusion: SfMultiColumnDropDownControl x: Name ="MultiColumnDropDown "
22+ <syncfusion: SfMultiColumnDropDownControl x: Name ="sfMultiColumn "
2323 ItemsSource="{Binding Orders}"
2424 ValueMember="CustomerID"
2525 DisplayMember="CustomerName"
@@ -47,7 +47,7 @@ You can select multiple rows at same time by setting [SelectionMode](https://hel
4747{% capture codesnippet1 %}
4848{% tabs %}
4949{% highlight xml %}
50- <syncfusion: SfMultiColumnDropDownControl x: Name ="MultiColumnDropDown "
50+ <syncfusion: SfMultiColumnDropDownControl x: Name ="sfMultiColumn "
5151 ItemsSource="{Binding Orders}"
5252 ValueMember="CustomerID"
5353 DisplayMember="CustomerName"
@@ -73,7 +73,7 @@ By default, selected values in the editor are separated by `;`. You can change t
7373
7474{% tabs %}
7575{% highlight xml %}
76- <syncfusion: SfMultiColumnDropDownControl x: Name ="MultiColumnDropDown "
76+ <syncfusion: SfMultiColumnDropDownControl x: Name ="sfMultiColumn "
7777 ItemsSource="{Binding Orders}"
7878 SelectionMode="Multiple"
7979 ValueMember="CustomerID"
@@ -109,10 +109,10 @@ xmlns:interactivity="http://schemas.microsoft.com/expression/2010/interactivity"
109109 <TextBox x:Name =" searchTextBox " Margin =" 3 " >
110110 < interactivity:Interaction.Triggers >
111111 <interactivity: EventTrigger EventName="TextChanged">
112- <interactivity: InvokeCommandAction Command="{Binding Path=DataContext.TextChanged, Source={x: Reference Name=MultiColumnDropDown }}" >
112+ <interactivity: InvokeCommandAction Command="{Binding Path=DataContext.TextChanged, Source={x: Reference Name=sfMultiColumn }}" >
113113 < interactivity:InvokeCommandAction.CommandParameter >
114114 <MultiBinding Converter =" {StaticResource multiConverter} " >
115- <Binding Source =" {x:Reference Name=MultiColumnDropDown } " />
115+ <Binding Source =" {x:Reference Name=sfMultiColumn } " />
116116 <Binding RelativeSource =" {RelativeSource Mode=FindAncestor, AncestorType=TextBox} " />
117117 </MultiBinding >
118118 </interactivity: InvokeCommandAction .CommandParameter>
@@ -124,7 +124,7 @@ xmlns:interactivity="http://schemas.microsoft.com/expression/2010/interactivity"
124124 </DataTemplate >
125125</Window.Resources>
126126
127- <syncfusion: SfMultiColumnDropDownControl x: Name ="MultiColumnDropDown "
127+ <syncfusion: SfMultiColumnDropDownControl x: Name ="sfMultiColumn "
128128 DisplayMember="Title"
129129 HeaderTemplate="{StaticResource headerTemplate}"
130130 ItemsSource="{Binding MoviesLists}"
@@ -133,8 +133,8 @@ xmlns:interactivity="http://schemas.microsoft.com/expression/2010/interactivity"
133133 < interactivity:Interaction.Triggers >
134134 <interactivity: EventTrigger EventName="PopupOpening">
135135 <interactivity: InvokeCommandAction
136- Command="{Binding Path=DataContext.PopupOpening, ElementName=MultiColumnDropDown }"
137- CommandParameter="{Binding ElementName=MultiColumnDropDown }" />
136+ Command="{Binding Path=DataContext.PopupOpening, ElementName=sfMultiColumn }"
137+ CommandParameter="{Binding ElementName=sfMultiColumn }" />
138138 </interactivity: EventTrigger >
139139 </interactivity: Interaction .Triggers>
140140</syncfusion: SfMultiColumnDropDownControl >
0 commit comments