Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
185
XamMultiColumnComboEditor sort
posted

Hello, I have a XamMultiColumnComboEditor with 2 columns (see code below). The data in the comboeditor is sorted on the first column now, but I want to be able to sort on both. (clicking on header Test would result in changing the sort to the column Test and same behavior for column product)

                <ig:XamMultiColumnComboEditor Name="cmbTest" ItemsSource="{Binding TestCollection}" DisplayMemberPath="Value.DisplayMember" SelectedItem="{Binding SelectedTest,Mode=TwoWay}" AutoGenerateColumns="False">
                    <ig:XamMultiColumnComboEditor.Columns>
                        <ig:TextComboColumn Key="Value.Description" HeaderText="Test" Width="*" />
                        <ig:TextComboColumn Key="Value.Product" HeaderText="Product" Width="*" />
                    </ig:XamMultiColumnComboEditor.Columns>
                </ig:XamMultiColumnComboEditor>

How can I do this with this editor?

Parents Reply Children
No Data