Given an object with properties as:
C#public class NonPersistentObject1
{
[DevExpress.ExpressApp.Data.Key]
[Browsable(false)]
public Guid Oid { get; set; }
public string DisplayText { get; set; }
public string Url { get; set; }
My client wants to allow the Url property to be clicked in a list view and open the url in new browser tab. Tickets T961969 and T1037946 helped me to achieve this.
After opening the url in a new tab the detail view of the item clicked is displayed in the Xaf browser tab. This is not desirable after the hyperlink was opened. I can disable detail view for the entire list view but that isn't ideal either. Opening the detail view from columns besides the Url column is excellent.
Is there a way to disable detail view when one particular DxDataGridlist column (the Url column in my case) is clicked?
Attached is a sample showing this behavior.