Is the CustomValueEnteredAction property present in the XamComboEditor? The documentation appears to say so.. (http://help.infragistics.com/Help/NetAdvantage/WPF/2011.2/CLR4.0/html/InfragisticsWPF4.Controls.Editors.XamComboEditor.v11.2~Infragistics.Controls.Editors.ComboEditorBase%602~CustomValueEnteredAction.html)
But I cant find it when in the xaml or the codebehind.
Hello jlmehta ,
I have been looking into your question and I believe that the issue that you are referring may be caused because currently we support two different XamComboEditor controls in our WPF package that provide slightly different functionality. You can use our old XamComboEditor control by adding InfragisticsWPF4.Editors.v11.2 dll to your application. Also we have exported our Silverlight XamComboEditor control, so in version 11.2 you can also take advantage from it in your WPF application. The CstomValueEnteredAction property is available only for our new XamComboEditor from the namespace Infragistics.Controls.Editors .
Please let me know if you need any further information on this matter.
Thanks Elena for your reply.
The primary reason I want to use the CustomValueEnteredAction property is to add a new item to the comboEditor when a user enters a new string in the ComboEditor and presses the Enter key. In the old XamComboEditor I could not find a satisfactory way to handle the Enter key. The CustomValueEnteredAction property seems to be exactly what I'm looking for and hence the question.
So how do I use the Silverlite exported XamComboEditor in XAML? Alternatively things would work for me if you could advise me on a good way to handle the Enter key press. Although I would prefer the CustomValueEnteredAction to work..
Here's what I have right now
xmlns:ig="http://schemas.infragistics.com/xaml"xmlns:igEditors="http://infragistics.com/Editors"<igEditors:XamComboEditor x:Name="CB2" Grid.Row="0" Width="200" Margin="0 5 0 5" ItemsSource="{Binding ViewModel.LayoutList}" Text="{Binding ViewModel.NewLayoutName, Mode=TwoWay}" IsEditable="True" DropDownClosed="FireSwitchLayout" ></igEditors:XamComboEditor>