فتح مغلق

How to show extra details on button click using datagrid #801


User avatar
0
safi خلقت

Hi

I am using blazorise datagrid and added custom button into it. I need to show extra details into datagrid while clicking on that button. So these details should come in between selected and next rows so can you please suggest me for this.

Thanks,


1 إجابة (إجابات)
  • User Avatar
    0
    mladen.macanovic خلقت

    Please look at the Blazorise to learn how to use a DetailRowTemplate https://blazorise.com/docs/extensions/datagrid/#detailrowtemplate

    To control the visibility of DetailRowTemplate you can use DetailRowTrigger handler. Once youz click on your button you set the flag that will be used by the DetailRowTrigger handler.

    Example:

    Task OnButtonClick()
    {
      someFlag = true;
      return Task.CompletedTask;
    }
    

    and

    DetailRowTrigger="@((item)=>item != null && someFlag == true)"
    
Made with ❤️ on ABP v8.2.0-preview Updated on مارس 25, 2024, 15:11