Hi,
I would like to have the DataFormComboBoxField behave the same way as the Edit mode: Editable, Read-Only and Auto Complete ad in your demo application. But when I set it to readonly it is disabled.
My code:
e.DataField = new DataFormComboBoxField()
{
ItemsSource = _componentsDS.ComponentKeyWords,
SelectedValuePath = "KeyWordId",
DisplayMemberPath = "Abbreviation",
DataMemberBinding = new Binding("KeywordId") { Mode = BindingMode.TwoWay },
IsComboboxEditable = true,
IsReadOnly = true,
Label = "Keyword"
};
The example in your application:
Kind regards,
Johan
Can you tell me which demo example you are referring to?