Try your search with a different keyword or use * as a wildcard.
@model DiscountModel
@await Html.PartialAsync("Table", new DataTablesModel
{
Name = "usagehistory-grid",
UrlRead = new DataUrl("UsageHistoryList", "Discount", new RouteValueDictionary { [nameof(Model.DiscountUsageHistorySearchModel.DiscountId)] = Model.DiscountUsageHistorySearchModel.DiscountId }),
UrlDelete = new DataUrl("UsageHistoryDelete", "Discount", new RouteValueDictionary { [nameof(Model.DiscountUsageHistorySearchModel.DiscountId)] = Model.DiscountUsageHistorySearchModel.DiscountId }),
Length = Model.DiscountUsageHistorySearchModel.PageSize,
LengthMenu = Model.DiscountUsageHistorySearchModel.AvailablePageSizes,
ColumnCollection = new List
{
new ColumnProperty(nameof(DiscountUsageHistoryModel.CreatedOn))
{
Title = T("Admin.Promotions.Discounts.History.CreatedOn").Text,
Width = "200",
Render = new RenderDate()
},
new ColumnProperty(nameof(DiscountUsageHistoryModel.CustomOrderNumber))
{
Title = T("Admin.Promotions.Discounts.History.CustomOrderNumber").Text,
ClassName = NopColumnClassDefaults.Button,
Width = "200",
Render = new RenderCustom("renderColumnOrderInfo")
},
new ColumnProperty(nameof(DiscountUsageHistoryModel.OrderTotal))
{
Title = T("Admin.Promotions.Discounts.History.OrderTotal").Text,
Width = "200"
},
new ColumnProperty(nameof(DiscountUsageHistoryModel.Id))
{
Title = T("Admin.Common.Delete").Text,
Width = "100",
Render = new RenderButtonRemove(T("Admin.Common.Delete").Text),
ClassName = NopColumnClassDefaults.Button
}
}
})