Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

List.cshtml

@model ConfigurationModel

@await Html.PartialAsync("Table", new DataTablesModel { Name = "log-grid", UrlRead = new DataUrl("LogList", "TaxTransactionLog", null), SearchButtonId = "search-log", Length = Model.TaxTransactionLogSearchModel.PageSize, LengthMenu = Model.TaxTransactionLogSearchModel.AvailablePageSizes, Filters = new List { new FilterParameter(nameof(Model.TaxTransactionLogSearchModel.CreatedFrom), nameof(Model.TaxTransactionLogSearchModel)), new FilterParameter(nameof(Model.TaxTransactionLogSearchModel.CreatedTo), nameof(Model.TaxTransactionLogSearchModel)) }, ColumnCollection = new List { new ColumnProperty(nameof(TaxTransactionLogModel.Id)) { IsMasterCheckBox = true, Render = new RenderCheckBox("checkbox_log"), ClassName = NopColumnClassDefaults.CenterAll, Width = "50", }, new ColumnProperty(nameof(TaxTransactionLogModel.StatusCode)) { Title = T("Plugins.Tax.Avalara.Log.StatusCode").Text, Width = "100" }, new ColumnProperty(nameof(TaxTransactionLogModel.Url)) { Title = T("Plugins.Tax.Avalara.Log.Url").Text, Width = "200" }, new ColumnProperty(nameof(TaxTransactionLogModel.CreatedDate)) { Title = T("Plugins.Tax.Avalara.Log.CreatedDate").Text, Width = "200", Render = new RenderDate() }, new ColumnProperty(nameof(TaxTransactionLogModel.Id)) { Title = T("Admin.Common.View").Text, Width = "100", ClassName = NopColumnClassDefaults.Button, Render = new RenderButtonView(new DataUrl("~/Admin/TaxTransactionLog/View/")) } } })