Hello,
How would I get more "gridlike" features in a MultiColumnDropDown control.
I would need to
- serailize the gridsettings (width of columns etc)
- filter on more than 1 column
- add buttons below the grid (to trigger some custom actions)
I though I would succeed by setting the contenttemplate on the control.
But I've taken the MultiDropDownDemo_2013 solution from the samples, and replaced in the XAML the original code:
<syncfusion:SfMultiColumnDropDownControl.Columns>
<syncfusion:GridTextColumn MappingName="Title" AllowResizing="True" />
<syncfusion:GridTextColumn MappingName="Cast" AllowResizing="True" />
<syncfusion:GridTextColumn MappingName="Director" />
<syncfusion:GridTextColumn MappingName="Rating" />
</syncfusion:SfMultiColumnDropDownControl.Columns>
with :
<syncfusion:SfMultiColumnDropDownControl.PopupContentTemplate>
<ControlTemplate>
<StackPanel>
<syncfusion:GridDataControl ItemsSource="{Binding MoviesList}">
</syncfusion:GridDataControl>
<Button>Click me</Button>
</StackPanel>
</ControlTemplate>
</syncfusion:SfMultiColumnDropDownControl.PopupContentTemplate>
But then the drop down is empty ... how should I tackle this ? Perhaps better off using the ComboBoxAdv control ?