Try your search with a different keyword or use * as a wildcard.
@using Nop.Core.Domain.Catalog
@using Nop.Services
@model CheckoutAttributeModel
@(await Html.LocalizedEditorAsync("checkoutattribute-localized",
@
,
@
))
@{
var attributeControlTypes = await ((AttributeControlType)Model.AttributeControlTypeId)
.ToSelectListAsync(valuesToExclude:
//these attributes don't support some control types
new[] { (int)AttributeControlType.ImageSquares });
}
@(await Html.LocalizedEditorAsync("pnlDefaultValueLocalized",
@
,
@
, cssClass: "advanced-setting"))
@await Component.InvokeAsync(typeof(MultistoreDisabledWarningViewComponent))