I have an unbound field with a comboeditor in a grid:
<igDP:UnboundField Name="ProvinciaFK" Label="{x:Static props:Resources.Provincia}" BindingMode="TwoWay" Width="0.3*">
<igDP:Field.Settings>
<igDP:FieldSettings EditorType="{x:Type vpCtrl:ValProProvinciaCombo}">
</igDP:FieldSettings>
</igDP:Field.Settings>
</igDP:UnboundField>
the ValProprovinciaCombo is a subclass of XamComboEditor that holds the ItemsProvider and their properties. The ItemsProvider list is correctly loaded but all the records show the same text of the combo. It seems that the ComboEditor Value is not bound to the Field. So how can I bind to the proper field?
Thanks
Hello,
You should set the BindingPath property to the name of the property that you want it to bind to.