Webiant Logo Webiant Logo
  1. No results found.

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

AssociateProductToAttributeValuePopup.cshtml

@model AssociateProductToAttributeValueSearchModel

@{
    Layout = "_AdminPopupLayout";

    //page title
    ViewBag.PageTitle = T("Admin.Catalog.Products.ProductAttributes.Attributes.Values.Fields.AssociatedProduct.AddNew").Text;
}

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

@T("Admin.Catalog.Products.ProductAttributes.Attributes.Values.Fields.AssociatedProduct.AddNew")

 
@await Html.PartialAsync("Table", new DataTablesModel { Name = "products-grid", UrlRead = new DataUrl("AssociateProductToAttributeValuePopupList", "Product", null), SearchButtonId = "search-products", Length = Model.PageSize, LengthMenu = Model.AvailablePageSizes, Filters = new List { new FilterParameter(nameof(Model.SearchProductName)), new FilterParameter(nameof(Model.SearchCategoryId)), new FilterParameter(nameof(Model.SearchManufacturerId)), new FilterParameter(nameof(Model.SearchStoreId)), new FilterParameter(nameof(Model.SearchVendorId)), new FilterParameter(nameof(Model.SearchProductTypeId)) }, ColumnCollection = new List { new ColumnProperty(nameof(ProductModel.Id)) { Title = T("Admin.Common.Select").Text, Width = "50", Render = new RenderButtonCustom(NopButtonClassDefaults.Default, T("Admin.Common.Select").Text) { OnClickFunctionName = "selectAssociatedProduct" } }, new ColumnProperty(nameof(ProductModel.Name)) { Title = T("Admin.Catalog.Products.Fields.Name").Text }, new ColumnProperty(nameof(ProductModel.Published)) { Title = T("Admin.Catalog.Products.Fields.Published").Text, Width = "100", ClassName = NopColumnClassDefaults.CenterAll, Render = new RenderBoolean() } } })