Ticket T1046939
Visible to All Users

Xaf Blazor - disable display of detailview from listview click on a particular column

created 3 years ago

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.

Answers approved by DevExpress Support

created 3 years ago

Hello,

Please disable the event propagation by handling the onlick event in the following way:

Razor
public static RenderFragment<object> Create() => (item) => { NonPersistentObject1 link = item as NonPersistentObject1; return@<a href=@link.Url target="_blank" onclick="event.stopImmediatePropagation()">@link.Url</a>; };

Let me know if you need further assistance.

Thanks,
Stanley

    Comments (1)

      Stopping the Dom event works perfect.
      Thank you for your help Stanley.

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.