Webiant Logo Webiant Logo
  1. No results found.

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

ProductToClassification.cshtml

@model AddProductToClassificationSearchModel

@{
    Layout = "_AdminPopupLayout";

    //page title
    ViewBag.PageTitle = T("Plugins.Tax.Avalara.ItemClassification.AddProduct").Text;
}

@if (ViewBag.RefreshPage == true)
{
    
}
else
{
    

@T("Plugins.Tax.Avalara.ItemClassification.AddProduct")

 
@await Html.PartialAsync("Table", new DataTablesModel { Name = "products-grid", UrlRead = new DataUrl("ProductListToClassification", "ItemClassification", null), SearchButtonId = "search-products", Length = Model.PageSize, LengthMenu = Model.AvailablePageSizes, Filters = new List { new FilterParameter(nameof(Model.SearchProductName)), new FilterParameter(nameof(Model.SearchProductTypeId)), new FilterParameter(nameof(Model.SearchCategoryId)), new FilterParameter(nameof(Model.SearchManufacturerId)), new FilterParameter(nameof(Model.SearchStoreId)), new FilterParameter(nameof(Model.SearchVendorId)) }, ColumnCollection = new List { new ColumnProperty(nameof(ProductModel.Id)) { IsMasterCheckBox = true, Render = new RenderCheckBox(nameof(AddProductToClassificationModel.SelectedProductIds)), ClassName = NopColumnClassDefaults.CenterAll, Width = "50" }, new ColumnProperty(nameof(ProductModel.Name)) { Title = T("Admin.Catalog.Products.Fields.Name").Text }, new ColumnProperty(nameof(ProductModel.Sku)) { Title = T("Admin.Catalog.Products.Fields.Sku").Text }, new ColumnProperty(nameof(ProductModel.Price)) { Title = T("Admin.Catalog.Products.Fields.Price").Text, Render = new RenderCustom("renderColumnPrice") }, new ColumnProperty(nameof(ProductModel.Published)) { Title = T("Admin.Catalog.Products.Fields.Published").Text, Width = "100", ClassName = NopColumnClassDefaults.CenterAll, Render = new RenderBoolean() } } })
}