This example shows how to manually initialize a new value and add it to a data source.
Update:
Starting with version 13.1 of DevExpress controls, you can use the DevExpress MVVM Framework to accomplish this task. It is necessary to create a command in the view model (for instance, the ShowProductFormCommand command) and bind it with the LookUpEditBase.ProcessNewValue event via the trigger. This would allow you to display the dialog (UserControl1.xaml file) for editing new source items in the LookUpEdit control when this even is raised. Then, you can implement custom logic in the OnShowProductFormCommandExecute (ProductList.cs file) method to process values in this dialog.
Please review our blogs to find additional information about DevExpress MVVM Framework:
Getting Started with DevExpress MVVM Framework. Commands and View Models.
DevExpress MVVM Framework. Introduction to Services, DXMessageBoxService and DialogService.
DevExpress MVVM Framework. Interaction of ViewModels. IDocumentManagerService.
Question Comments
Added By: Sorin Sandu at: 7/10/2012 8:47:32 AM
Hi
Is it possible to close the popup before showing the dialog ?
hi
once entered the new value on the product name, I tab . should the lost focus open the new tab?
thanks.
PD. I have to click outside the control for the pop up to show.
Would you mind to translate this example to POCO?