|
@Html.SmartLabelFor(model => model.Locales[item].Name)
|
@Html.EditorFor(model => Model.Locales[item].Name)
@Html.ValidationMessageFor(model => model.Locales[item].Name)
|
|
@Html.HiddenFor(model => model.Locales[item].LanguageId)
|
,
@
|
@Html.SmartLabelFor(model => model.Name)
|
@Html.EditorFor(model => model.Name)
@Html.ValidationMessageFor(model => model.Name)
|
))
@Html.HiddenFor(model => model.DisplayColorSquaresRgb)
|
@Html.SmartLabelFor(model => model.Alias)
|
@Html.EditorFor(model => model.Alias)
@Html.ValidationMessageFor(model => model.Alias)
|
@if (Model.DisplayColorSquaresRgb)
{
|
@Html.SmartLabelFor(model => model.ColorSquaresRgb)
|
@Html.EditorFor(model => model.ColorSquaresRgb)
@Html.ValidationMessageFor(model => model.ColorSquaresRgb)
|
}
|
@Html.SmartLabelFor(model => model.PriceAdjustment)
|
@Html.EditorFor(model => model.PriceAdjustment)
@Html.ValidationMessageFor(model => model.PriceAdjustment)
|
|
@Html.SmartLabelFor(model => model.WeightAdjustment)
|
@Html.EditorFor(model => model.WeightAdjustment)
@Html.ValidationMessageFor(model => model.WeightAdjustment)
|
|
@Html.SmartLabelFor(model => model.IsPreSelected)
|
@Html.EditorFor(model => model.IsPreSelected)
@Html.ValidationMessageFor(model => model.IsPreSelected)
|
|
@Html.SmartLabelFor(model => model.DisplayOrder)
|
@Html.EditorFor(model => model.DisplayOrder)
@Html.ValidationMessageFor(model => model.DisplayOrder)
|