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
50
XamDataGrid ComboBoxField AllowFiltering AutoComplete
posted

I have a comboboxfield in my xamdatagrid.  I need it to allow for filtering and autocomplete of the bound records, but disallow free typing in the field.


I can achieve this behavior in the XamComboBox control like so:

                    <ig:XamComboEditor Name="cmbLabel" HorizontalAlignment="Left" Width="250" Margin="5" SelectionChanged="cmbLabel_SelectionChanged" AutoComplete="True"
                                       AllowFiltering="True" />

Can a similar thing be done to the comboboxfield?

Parents
  • 50
    Offline posted

    Actual code for the XamComboEditor should be:

    <ig:XamComboEditor Name="cmbLabel" HorizontalAlignment="Left" Width="250" Margin="5" SelectionChanged="cmbLabel_SelectionChanged" AutoComplete="True" AllowFiltering="True" />

Reply Children
No Data