Ticket T1059627
Visible to All Users

Xaf blazor create clickable links in list view

created 3 years ago

Hi
I need to create clickable links in a list view, so for so it is working by using a custom column template and add the correct html attributes as show in this tickets

https://supportcenter.devexpress.com/ticket/details/t1037946

https://docs.devexpress.com/eXpressAppFramework/402154/getting-started/in-depth-tutorial-blazor/extend-functionality/access-data-grid-settings?utm_source=SupportCenter&utm_medium=website&utm_campaign=docs-feedback&utm_content=T1037946&contactId=A912744

https://supportcenter.devexpress.com/ticket/details/t961969

the problem I'm having is that when I click the link it also opens the detail view at the same time, I have attached a demo project and gif showing what is happening.

the goal is that when the user click in the specific cell in the column just execute the link but not open the list view

Answers approved by DevExpress Support

created 3 years ago

Hi Joche,

To avoid opening a Detail View, please disable the event bubbling via the "event.stopImmediatePropagation" JavaScript function. Here is a code snippet from the XAF Blazor: How to open a reference property's Detail View by cell clicking in a ListView? ticket:

Razor
<a href="@GetUrl()" target="_blank" onclick="event.stopImmediatePropagation()">@DefaultRenderFragment</a>

Please let me know whether this helps.

Thanks,
Stanley

    Comments (1)
    J J
    Joche Ojeda - DevExpress MVP 3 years ago

      Thanks Stanley, now is working fine ))

      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.