Webiant Logo Webiant Logo
  1. No results found.

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

_CreateOrUpdateProductAttributeValue.cshtml

@model ProductAttributeValueModel

@using Nop.Core.Domain.Catalog
@using Nop.Services




@if (ViewBag.RefreshPage == true) { }
@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.ProductAttributeValueDetailsTop, additionalData = Model })
@Model.AssociatedProductName
@(await Html.LocalizedEditorAsync("productattributevalue-localized", @
, @
)) @if (Model.DisplayColorSquaresRgb) { //ensure "ColorSquaresRgb" has some default value. Otherwise farbtastic won't set a selected value if (string.IsNullOrEmpty(Model.ColorSquaresRgb)) { Model.ColorSquaresRgb = "#000000"; }
} @if (Model.DisplayImageSquaresPicture) {
}
@foreach (var picture in Model.ProductPictureModels) {
}
@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.ProductAttributeValueDetailsBottom, additionalData = Model })