I have a Entity DataTable.
ColumnCollection = new List<ColumnProperty>
{
new ColumnProperty(nameof(ProductChapterMappingModel.Id))
{
Title = T("Admin.Common.Edit").Text,
Width = "200",
ClassName = NopColumnClassDefaults.Button,
Render = new RenderButtonsInlineEdit()
}
}
In the web view it is displaying like
This looks good but my requirement is to add another button called Details under the same column like:
How can I do that?
2
Answers
You can use
and then