Ringnøgle BH 21mm
Varenr.:
480809307
EAN:
5704645100754
Udskiftelige hoveder til momentnøgler.
- Passer til samtlige CCM og LTC nøgler
- Tommedim. på forespørgsel
- cc-mål 36,5 mm.
Error compiling template "Designs/Swift/Components/Specifications/List.cshtml" Line 27: 'List' does not contain a definition for 'Values' and no accessible extension method 'Values' accepting a first argument of type 'List ' could be found (are you missing a using directive or an assembly reference?)
1 // <auto-generated/> 2 #pragma warning disable 1591 3 namespace CompiledRazorTemplates.Dynamic 4 { 5 #line hidden 6 using System.Threading.Tasks; 7 using System; 8 using System.Linq; 9 using Dynamicweb.Ecommerce.ProductCatalog; 10 using System.Collections.Generic; 11 internal class RazorEngine_d5b699b6114b41f49cf95d163547b701 : Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 12 { 13 #pragma warning disable 1998 14 public async override global::System.Threading.Tasks.Task ExecuteAsync() 15 { 16 WriteLiteral("\r\n"); 17 18 var groups = GetViewParameter("Groups") as List<FieldGroupViewModel>; 19 bool hideGroupHeaders = GetViewParameterBoolean("HideGroupHeaders"); 20 bool hideTitle = GetViewParameterBoolean("HideTitle"); 21 string size = GetViewParameterString("Size"); 22 23 string title = Model.Item.GetString("Title"); 24 bool hideLabels = Model.Item.GetBoolean("HideFieldLabels"); 25 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 26 string gapCss = size == "full" ? " gap-4" : " gap-2"; 27 var filteredGroups = groups.Where(g => g.Fields.Values.Any(f => f.FieldHasValue())); 28 29 if (!hideTitle) 30 { 31 WriteLiteral("\t\t<h2"); 32 BeginWriteAttribute("class", " class=\"", 792, "\"", 823, 2); 33 WriteAttributeValue("", 800, "g-col-12", 800, 8, true); 34 WriteAttributeValue(" ", 808, titleFontSize, 809, 14, false); 35 EndWriteAttribute(); 36 WriteLiteral(">"); 37 Write(title); 38 WriteLiteral("</h2>\r\n"); 39 } 40 41 WriteLiteral("\t<div class=\"g-col-12\">\r\n"); 42 foreach (var group in groups) 43 { 44 if (!hideGroupHeaders) 45 { 46 WriteLiteral("\t\t\t\t<h3>"); 47 Write(group.Name); 48 WriteLiteral("</h3>\r\n"); 49 } 50 51 WriteLiteral("\t\t\t<dl"); 52 BeginWriteAttribute("class", " class=\"", 981, "\"", 1003, 2); 53 WriteAttributeValue("", 989, "grid", 989, 4, true); 54 WriteAttributeValue(" ", 993, gapCss, 994, 9, false); 55 EndWriteAttribute(); 56 WriteLiteral(">\r\n"); 57 foreach (var field in group.Fields) 58 { 59 if (!hideLabels) 60 { 61 WriteLiteral("\t\t\t\t\t\t<dt class=\"g-col-4\">"); 62 Write(field.Name); 63 WriteLiteral("</dt>\r\n\t\t\t\t\t\t<dd class=\"g-col-8 mb-0 text-break\">"); 64 Write(RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)); 65 WriteLiteral("</dd>\r\n"); 66 } 67 else 68 { 69 WriteLiteral("\t\t\t\t\t\t<dd class=\"g-col-12 mb-0 text-break\">"); 70 Write(RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)); 71 WriteLiteral("</dd>\t\t\t\t\t\r\n"); 72 } 73 } 74 WriteLiteral("\t\t\t</dl>\r\n"); 75 } 76 WriteLiteral("\t</div>\r\n"); 77 } 78 #pragma warning restore 1998 79 } 80 } 81 #pragma warning restore 1591 82
1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 @using Dynamicweb.Ecommerce.ProductCatalog 3 @using System.Collections.Generic 4 5 @{ 6 var groups = GetViewParameter("Groups") as List<FieldGroupViewModel>; 7 bool hideGroupHeaders = GetViewParameterBoolean("HideGroupHeaders"); 8 bool hideTitle = GetViewParameterBoolean("HideTitle"); 9 string size = GetViewParameterString("Size"); 10 11 string title = Model.Item.GetString("Title"); 12 bool hideLabels = Model.Item.GetBoolean("HideFieldLabels"); 13 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 14 string gapCss = size == "full" ? " gap-4" : " gap-2"; 15 var filteredGroups = groups.Where(g => g.Fields.Values.Any(f => f.FieldHasValue())); 16 17 if (!hideTitle) 18 { 19 <h2 class="g-col-12 @titleFontSize">@title</h2> 20 } 21 22 <div class="g-col-12"> 23 @foreach (var group in groups) 24 { 25 if (!hideGroupHeaders) 26 { 27 <h3>@group.Name</h3> 28 } 29 30 <dl class="grid @(gapCss)"> 31 @foreach (var field in group.Fields) 32 { 33 if (!hideLabels) 34 { 35 <dt class="g-col-4">@field.Name</dt> 36 <dd class="g-col-8 mb-0 text-break">@RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)</dd> 37 } 38 else 39 { 40 <dd class="g-col-12 mb-0 text-break">@RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)</dd> 41 } 42 } 43 </dl> 44 } 45 </div> 46 } 47
Error compiling template "Designs/Swift/Components/Specifications/List.cshtml" Line 27: 'List' does not contain a definition for 'Values' and no accessible extension method 'Values' accepting a first argument of type 'List ' could be found (are you missing a using directive or an assembly reference?)
1 // <auto-generated/> 2 #pragma warning disable 1591 3 namespace CompiledRazorTemplates.Dynamic 4 { 5 #line hidden 6 using System.Threading.Tasks; 7 using System; 8 using System.Linq; 9 using Dynamicweb.Ecommerce.ProductCatalog; 10 using System.Collections.Generic; 11 internal class RazorEngine_f9e4f68d3f7141caa13faf288326217f : Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 12 { 13 #pragma warning disable 1998 14 public async override global::System.Threading.Tasks.Task ExecuteAsync() 15 { 16 WriteLiteral("\r\n"); 17 18 var groups = GetViewParameter("Groups") as List<FieldGroupViewModel>; 19 bool hideGroupHeaders = GetViewParameterBoolean("HideGroupHeaders"); 20 bool hideTitle = GetViewParameterBoolean("HideTitle"); 21 string size = GetViewParameterString("Size"); 22 23 string title = Model.Item.GetString("Title"); 24 bool hideLabels = Model.Item.GetBoolean("HideFieldLabels"); 25 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 26 string gapCss = size == "full" ? " gap-4" : " gap-2"; 27 var filteredGroups = groups.Where(g => g.Fields.Values.Any(f => f.FieldHasValue())); 28 29 if (!hideTitle) 30 { 31 WriteLiteral("\t\t<h2"); 32 BeginWriteAttribute("class", " class=\"", 792, "\"", 823, 2); 33 WriteAttributeValue("", 800, "g-col-12", 800, 8, true); 34 WriteAttributeValue(" ", 808, titleFontSize, 809, 14, false); 35 EndWriteAttribute(); 36 WriteLiteral(">"); 37 Write(title); 38 WriteLiteral("</h2>\r\n"); 39 } 40 41 WriteLiteral("\t<div class=\"g-col-12\">\r\n"); 42 foreach (var group in groups) 43 { 44 if (!hideGroupHeaders) 45 { 46 WriteLiteral("\t\t\t\t<h3>"); 47 Write(group.Name); 48 WriteLiteral("</h3>\r\n"); 49 } 50 51 WriteLiteral("\t\t\t<dl"); 52 BeginWriteAttribute("class", " class=\"", 981, "\"", 1003, 2); 53 WriteAttributeValue("", 989, "grid", 989, 4, true); 54 WriteAttributeValue(" ", 993, gapCss, 994, 9, false); 55 EndWriteAttribute(); 56 WriteLiteral(">\r\n"); 57 foreach (var field in group.Fields) 58 { 59 if (!hideLabels) 60 { 61 WriteLiteral("\t\t\t\t\t\t<dt class=\"g-col-4\">"); 62 Write(field.Name); 63 WriteLiteral("</dt>\r\n\t\t\t\t\t\t<dd class=\"g-col-8 mb-0 text-break\">"); 64 Write(RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)); 65 WriteLiteral("</dd>\r\n"); 66 } 67 else 68 { 69 WriteLiteral("\t\t\t\t\t\t<dd class=\"g-col-12 mb-0 text-break\">"); 70 Write(RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)); 71 WriteLiteral("</dd>\t\t\t\t\t\r\n"); 72 } 73 } 74 WriteLiteral("\t\t\t</dl>\r\n"); 75 } 76 WriteLiteral("\t</div>\r\n"); 77 } 78 #pragma warning restore 1998 79 } 80 } 81 #pragma warning restore 1591 82
1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 @using Dynamicweb.Ecommerce.ProductCatalog 3 @using System.Collections.Generic 4 5 @{ 6 var groups = GetViewParameter("Groups") as List<FieldGroupViewModel>; 7 bool hideGroupHeaders = GetViewParameterBoolean("HideGroupHeaders"); 8 bool hideTitle = GetViewParameterBoolean("HideTitle"); 9 string size = GetViewParameterString("Size"); 10 11 string title = Model.Item.GetString("Title"); 12 bool hideLabels = Model.Item.GetBoolean("HideFieldLabels"); 13 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 14 string gapCss = size == "full" ? " gap-4" : " gap-2"; 15 var filteredGroups = groups.Where(g => g.Fields.Values.Any(f => f.FieldHasValue())); 16 17 if (!hideTitle) 18 { 19 <h2 class="g-col-12 @titleFontSize">@title</h2> 20 } 21 22 <div class="g-col-12"> 23 @foreach (var group in groups) 24 { 25 if (!hideGroupHeaders) 26 { 27 <h3>@group.Name</h3> 28 } 29 30 <dl class="grid @(gapCss)"> 31 @foreach (var field in group.Fields) 32 { 33 if (!hideLabels) 34 { 35 <dt class="g-col-4">@field.Name</dt> 36 <dd class="g-col-8 mb-0 text-break">@RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)</dd> 37 } 38 else 39 { 40 <dd class="g-col-12 mb-0 text-break">@RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)</dd> 41 } 42 } 43 </dl> 44 } 45 </div> 46 } 47
Error compiling template "Designs/Swift/Components/Specifications/List.cshtml" Line 27: 'List' does not contain a definition for 'Values' and no accessible extension method 'Values' accepting a first argument of type 'List ' could be found (are you missing a using directive or an assembly reference?)
1 // <auto-generated/> 2 #pragma warning disable 1591 3 namespace CompiledRazorTemplates.Dynamic 4 { 5 #line hidden 6 using System.Threading.Tasks; 7 using System; 8 using System.Linq; 9 using Dynamicweb.Ecommerce.ProductCatalog; 10 using System.Collections.Generic; 11 internal class RazorEngine_e9fd6bf5413d46b78468bbcb4bc0a9c8 : Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 12 { 13 #pragma warning disable 1998 14 public async override global::System.Threading.Tasks.Task ExecuteAsync() 15 { 16 WriteLiteral("\r\n"); 17 18 var groups = GetViewParameter("Groups") as List<FieldGroupViewModel>; 19 bool hideGroupHeaders = GetViewParameterBoolean("HideGroupHeaders"); 20 bool hideTitle = GetViewParameterBoolean("HideTitle"); 21 string size = GetViewParameterString("Size"); 22 23 string title = Model.Item.GetString("Title"); 24 bool hideLabels = Model.Item.GetBoolean("HideFieldLabels"); 25 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 26 string gapCss = size == "full" ? " gap-4" : " gap-2"; 27 var filteredGroups = groups.Where(g => g.Fields.Values.Any(f => f.FieldHasValue())); 28 29 if (!hideTitle) 30 { 31 WriteLiteral("\t\t<h2"); 32 BeginWriteAttribute("class", " class=\"", 792, "\"", 823, 2); 33 WriteAttributeValue("", 800, "g-col-12", 800, 8, true); 34 WriteAttributeValue(" ", 808, titleFontSize, 809, 14, false); 35 EndWriteAttribute(); 36 WriteLiteral(">"); 37 Write(title); 38 WriteLiteral("</h2>\r\n"); 39 } 40 41 WriteLiteral("\t<div class=\"g-col-12\">\r\n"); 42 foreach (var group in groups) 43 { 44 if (!hideGroupHeaders) 45 { 46 WriteLiteral("\t\t\t\t<h3>"); 47 Write(group.Name); 48 WriteLiteral("</h3>\r\n"); 49 } 50 51 WriteLiteral("\t\t\t<dl"); 52 BeginWriteAttribute("class", " class=\"", 981, "\"", 1003, 2); 53 WriteAttributeValue("", 989, "grid", 989, 4, true); 54 WriteAttributeValue(" ", 993, gapCss, 994, 9, false); 55 EndWriteAttribute(); 56 WriteLiteral(">\r\n"); 57 foreach (var field in group.Fields) 58 { 59 if (!hideLabels) 60 { 61 WriteLiteral("\t\t\t\t\t\t<dt class=\"g-col-4\">"); 62 Write(field.Name); 63 WriteLiteral("</dt>\r\n\t\t\t\t\t\t<dd class=\"g-col-8 mb-0 text-break\">"); 64 Write(RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)); 65 WriteLiteral("</dd>\r\n"); 66 } 67 else 68 { 69 WriteLiteral("\t\t\t\t\t\t<dd class=\"g-col-12 mb-0 text-break\">"); 70 Write(RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)); 71 WriteLiteral("</dd>\t\t\t\t\t\r\n"); 72 } 73 } 74 WriteLiteral("\t\t\t</dl>\r\n"); 75 } 76 WriteLiteral("\t</div>\r\n"); 77 } 78 #pragma warning restore 1998 79 } 80 } 81 #pragma warning restore 1591 82
1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 @using Dynamicweb.Ecommerce.ProductCatalog 3 @using System.Collections.Generic 4 5 @{ 6 var groups = GetViewParameter("Groups") as List<FieldGroupViewModel>; 7 bool hideGroupHeaders = GetViewParameterBoolean("HideGroupHeaders"); 8 bool hideTitle = GetViewParameterBoolean("HideTitle"); 9 string size = GetViewParameterString("Size"); 10 11 string title = Model.Item.GetString("Title"); 12 bool hideLabels = Model.Item.GetBoolean("HideFieldLabels"); 13 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 14 string gapCss = size == "full" ? " gap-4" : " gap-2"; 15 var filteredGroups = groups.Where(g => g.Fields.Values.Any(f => f.FieldHasValue())); 16 17 if (!hideTitle) 18 { 19 <h2 class="g-col-12 @titleFontSize">@title</h2> 20 } 21 22 <div class="g-col-12"> 23 @foreach (var group in groups) 24 { 25 if (!hideGroupHeaders) 26 { 27 <h3>@group.Name</h3> 28 } 29 30 <dl class="grid @(gapCss)"> 31 @foreach (var field in group.Fields) 32 { 33 if (!hideLabels) 34 { 35 <dt class="g-col-4">@field.Name</dt> 36 <dd class="g-col-8 mb-0 text-break">@RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)</dd> 37 } 38 else 39 { 40 <dd class="g-col-12 mb-0 text-break">@RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)</dd> 41 } 42 } 43 </dl> 44 } 45 </div> 46 } 47
Error compiling template "Designs/Swift/Components/Specifications/List.cshtml" Line 27: 'List' does not contain a definition for 'Values' and no accessible extension method 'Values' accepting a first argument of type 'List ' could be found (are you missing a using directive or an assembly reference?)
1 // <auto-generated/> 2 #pragma warning disable 1591 3 namespace CompiledRazorTemplates.Dynamic 4 { 5 #line hidden 6 using System.Threading.Tasks; 7 using System; 8 using System.Linq; 9 using Dynamicweb.Ecommerce.ProductCatalog; 10 using System.Collections.Generic; 11 internal class RazorEngine_5bbd10b98bdb4f8c93c0e036eb8e0640 : Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 12 { 13 #pragma warning disable 1998 14 public async override global::System.Threading.Tasks.Task ExecuteAsync() 15 { 16 WriteLiteral("\r\n"); 17 18 var groups = GetViewParameter("Groups") as List<FieldGroupViewModel>; 19 bool hideGroupHeaders = GetViewParameterBoolean("HideGroupHeaders"); 20 bool hideTitle = GetViewParameterBoolean("HideTitle"); 21 string size = GetViewParameterString("Size"); 22 23 string title = Model.Item.GetString("Title"); 24 bool hideLabels = Model.Item.GetBoolean("HideFieldLabels"); 25 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 26 string gapCss = size == "full" ? " gap-4" : " gap-2"; 27 var filteredGroups = groups.Where(g => g.Fields.Values.Any(f => f.FieldHasValue())); 28 29 if (!hideTitle) 30 { 31 WriteLiteral("\t\t<h2"); 32 BeginWriteAttribute("class", " class=\"", 792, "\"", 823, 2); 33 WriteAttributeValue("", 800, "g-col-12", 800, 8, true); 34 WriteAttributeValue(" ", 808, titleFontSize, 809, 14, false); 35 EndWriteAttribute(); 36 WriteLiteral(">"); 37 Write(title); 38 WriteLiteral("</h2>\r\n"); 39 } 40 41 WriteLiteral("\t<div class=\"g-col-12\">\r\n"); 42 foreach (var group in groups) 43 { 44 if (!hideGroupHeaders) 45 { 46 WriteLiteral("\t\t\t\t<h3>"); 47 Write(group.Name); 48 WriteLiteral("</h3>\r\n"); 49 } 50 51 WriteLiteral("\t\t\t<dl"); 52 BeginWriteAttribute("class", " class=\"", 981, "\"", 1003, 2); 53 WriteAttributeValue("", 989, "grid", 989, 4, true); 54 WriteAttributeValue(" ", 993, gapCss, 994, 9, false); 55 EndWriteAttribute(); 56 WriteLiteral(">\r\n"); 57 foreach (var field in group.Fields) 58 { 59 if (!hideLabels) 60 { 61 WriteLiteral("\t\t\t\t\t\t<dt class=\"g-col-4\">"); 62 Write(field.Name); 63 WriteLiteral("</dt>\r\n\t\t\t\t\t\t<dd class=\"g-col-8 mb-0 text-break\">"); 64 Write(RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)); 65 WriteLiteral("</dd>\r\n"); 66 } 67 else 68 { 69 WriteLiteral("\t\t\t\t\t\t<dd class=\"g-col-12 mb-0 text-break\">"); 70 Write(RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)); 71 WriteLiteral("</dd>\t\t\t\t\t\r\n"); 72 } 73 } 74 WriteLiteral("\t\t\t</dl>\r\n"); 75 } 76 WriteLiteral("\t</div>\r\n"); 77 } 78 #pragma warning restore 1998 79 } 80 } 81 #pragma warning restore 1591 82
1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 @using Dynamicweb.Ecommerce.ProductCatalog 3 @using System.Collections.Generic 4 5 @{ 6 var groups = GetViewParameter("Groups") as List<FieldGroupViewModel>; 7 bool hideGroupHeaders = GetViewParameterBoolean("HideGroupHeaders"); 8 bool hideTitle = GetViewParameterBoolean("HideTitle"); 9 string size = GetViewParameterString("Size"); 10 11 string title = Model.Item.GetString("Title"); 12 bool hideLabels = Model.Item.GetBoolean("HideFieldLabels"); 13 string titleFontSize = Model.Item.GetRawValueString("TitleFontSize", "display-4"); 14 string gapCss = size == "full" ? " gap-4" : " gap-2"; 15 var filteredGroups = groups.Where(g => g.Fields.Values.Any(f => f.FieldHasValue())); 16 17 if (!hideTitle) 18 { 19 <h2 class="g-col-12 @titleFontSize">@title</h2> 20 } 21 22 <div class="g-col-12"> 23 @foreach (var group in groups) 24 { 25 if (!hideGroupHeaders) 26 { 27 <h3>@group.Name</h3> 28 } 29 30 <dl class="grid @(gapCss)"> 31 @foreach (var field in group.Fields) 32 { 33 if (!hideLabels) 34 { 35 <dt class="g-col-4">@field.Name</dt> 36 <dd class="g-col-8 mb-0 text-break">@RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)</dd> 37 } 38 else 39 { 40 <dd class="g-col-12 mb-0 text-break">@RenderPartial("Components/Specifications/Shared/FieldValue.cshtml", field)</dd> 41 } 42 } 43 </dl> 44 } 45 </div> 46 } 47
Levering
Dag til dag