Table functions > Confirm delete popup
Crud Elite
Action Column
Table functions
Common issues
Other
How it works
We’re referring to this:
You can follow the steps below to change the title and description.
Open /Views/Home/_Table.cshtml
, find the part of code as shown in image below. Change the null, null
into your title and description.
Original code is:
<a class="fw-bolder fs-4 lh-1 text-decoration-none" href="javascript:void(0)"
onclick="event.stopPropagation();openConfirmationModal('@GeneralHelper.EscapeQuotes(item.Name)',
'@Url.Action("delete", new { id= item.Id})', null, null)">
<i class="bi bi-trash3"></i>
</a>
You might change to:
<a class="fw-bolder fs-4 lh-1 text-decoration-none" href="javascript:void(0)" onclick="event.stopPropagation();openConfirmationModal('@GeneralHelper.EscapeQuotes(item.Name)',
'@Url.Action("delete", new { id= item.Id})', 'Are you sure to delete the client?', 'Please make sure the client can be deleted.')">
<i class="bi bi-trash3"></i>
</a>