- Create custom property by descend from the ASPxLookupPropertyEditor class
- decide class object in which this custom property will use for.
- override ShowLink property and make it return value of '0' as below example
Imports DevExpress.ExpressApp.Web.Editors.ASPx
Imports DevExpress.ExpressApp.Model
<DevExpress.ExpressApp.Editors.PropertyEditor(GetType(YourBusinessClass), False)> _
Public Class CustomASPxLookupPropertyEditor
Inherits ASPxLookupPropertyEditor
Public Sub New(ByVal objectType As Type, ByVal info As IModelMemberViewItem)
MyBase.New(objectType, info)
End Sub
Protected Overrides Function CanShowLink() As Boolean
Return False ' MyBase.CanShowLink()
End Function
End Class