This isue solulation as the following :
'X' button = assign null value button in the Loookupeditor Display with DrowDown button alongside
- First Devforce may be adding feature enable or disable for 'X' button in the DevExpress Lookupedit of ListConverter
- Second Adding custom databinder with "LookupEditDataBinder" file (provided for Devforce)
As far as I see, you should comment out the following lines in the LookupEditDataBinder :
[C#]
if ((listConverter.Editability == Editability.Optional) && !ContainsDeleteButton(properties.Buttons)) {
properties.Buttons.Insert(0, new EditorButton(ButtonPredefines.Delete));
properties.ActionButtonIndex = 1;
properties.ButtonPressed += new ButtonPressedEventHandler(ButtonPressedHandler);
}
Alternatively, set the (ViewDescriptor.DataConverter as ListConverter).Editability property to a value other than Editability.Optional.
Best Regards