Kampanjpris Prissänkt 20%
S4292-LANG2-cbbca9d9-75c2-4da0-8fcc-1fd81dd3d610
S4292-LANG2-5fb0c395-841a-4113-a540-b2c2386f5d0a
S4292-LANG2-9028b916-047c-470d-8809-3637e449a944
S4292-LANG2-c158c28f-28f3-4483-b530-32762a23f179
S4292-LANG2-7c6f2812-94c7-4109-b760-06a3299a44d1
S4292-LANG2-f46635ab-bb75-48d5-9917-74f46a7cb8bf
S4292-LANG2-0a5aad84-d21e-48c6-af39-c0613a8a6790
S4292-LANG2-8b6798ed-fa51-411d-9ffd-debceca52b6f
Error executing template "Designs/Swift/Paragraph/Swift_ProductComponentParagraph.cshtml"
System.ArgumentException: Could not write parsed file: C:\inetpub\solutions\Goecker-2022-Prod\Files\Templates\Designs\Swift\_parsed\Swift_ProductComponentEdit.parsed.cshtml System.IO.IOException: The process cannot access the file 'C:\inetpub\solutions\Goecker-2022-Prod\Files\Templates\Designs\Swift\_parsed\Swift_ProductComponentEdit.parsed.cshtml' because it is being used by another process.
   at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
   at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
   at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
   at System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost)
   at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost)
   at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding)
   at Dynamicweb.Core.Helpers.TextFileHelper.WriteTextFile(String value, String path, Boolean appendToFile, Encoding encoding)
   at Dynamicweb.Rendering.Designer.Parser.Parse(Layout l)
   at Dynamicweb.Rendering.Designer.Parser.Parse(Layout l)
   at Dynamicweb.Rendering.Designer.Layout.CheckParsed()
   at Dynamicweb.Rendering.Designer.Layout..ctor(FileInfo f, Design design)
   at Dynamicweb.Rendering.Designer.Layout.GetLayoutByLocation(String path)
   at Dynamicweb.Content.Layouts.LayoutLocator.FindLayout(Page page, String layoutName)
   at Dynamicweb.Frontend.Content.GetLayoutForDevice(Page page, DeviceType device)
   at Dynamicweb.Frontend.Content.CreateGridContent(Int32 contentId, Boolean ignoreVisualEdit)
   at Dynamicweb.Frontend.Content.RenderExternalGrid(Int32 pageId, String container)
   at CompiledRazorTemplates.Dynamic.RazorEngine_b8d16991a81f4c6b916728fe04b73c62.Execute() in C:\inetpub\solutions\Goecker-2022-Prod\Files\Templates\Designs\Swift\Paragraph\Swift_ProductComponentParagraph.cshtml:line 39
   at RazorEngine.Templating.TemplateBase.RazorEngine.Templating.ITemplate.Run(ExecuteContext context, TextWriter reader)
   at RazorEngine.Templating.RazorEngineService.RunCompile(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass16_0.<RunCompile>b__0(TextWriter writer)
   at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
   at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
   at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
   at Dynamicweb.Rendering.Template.RenderRazorTemplate()

1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 3 @{ 4 int itemSourcePageId = Convert.ToInt32(Model.Item.GetRawValueString("ComponentSource", "0")); 5 6 var pageService = new Dynamicweb.Content.PageService(); 7 itemSourcePageId = itemSourcePageId > 0 && pageService.GetPageOrLanguage(itemSourcePageId, Pageview.AreaID) != null ? pageService.GetPageOrLanguage(itemSourcePageId, Pageview.AreaID).ID : itemSourcePageId; 8 } 9 10 @if (itemSourcePageId != 0) { 11 var page = Dynamicweb.Content.Services.Pages.GetPage(itemSourcePageId); 12 13 if (page != null) { 14 var pageViewModel = Dynamicweb.Frontend.ContentViewModelFactory.CreatePageInfoViewModel(page); 15 string itemTheme = !string.IsNullOrWhiteSpace(pageViewModel.Item.GetRawValueString("Theme")) ? " theme " + pageViewModel.Item.GetRawValueString("Theme").Replace(" ", "").Trim().ToLower() : string.Empty; 16 17 string contentPadding = pageViewModel.Item.GetRawValueString("ContentPadding", ""); 18 contentPadding = contentPadding == "none" ? "p-0" : contentPadding; 19 contentPadding = contentPadding == "small" ? "p-2 p-md-3" : contentPadding; 20 contentPadding = contentPadding == "large" ? "p-4 p-md-5" : contentPadding; 21 contentPadding = contentPadding == "small-x" ? "px-2 px-md-3" : contentPadding; 22 contentPadding = contentPadding == "large-x" ? "px-4 px-md-5" : contentPadding; 23 24 string layout = Model.Item.GetRawValueString("Layout", "top"); 25 switch (layout) 26 { 27 case "top": 28 case "alignLeftMiddle": 29 layout = ""; 30 break; 31 case "center": 32 case "alignLeft": 33 layout = "d-flex align-items-center text-start"; 34 break; 35 } 36 37 <div class="@contentPadding @itemTheme @(layout) h-100 item_@Model.Item.SystemName.ToLower()"> 38 <div class="w-100"> 39 @RenderGrid(itemSourcePageId) 40 </div> 41 </div> 42 } else if (Pageview.IsVisualEditorMode) { 43 <div class="alert alert-dark m-0" role="alert"> 44 <span>@Translate("The selected component does not exist anymore")</span> 45 </div> 46 } 47 } else if (Pageview.IsVisualEditorMode) { 48 <div class="alert alert-dark m-0" role="alert"> 49 <span>@Translate("Product component: The component will be shown here, if any")</span> 50 </div> 51 } 52

Beskrivning

SmallRig 4292 VB99 Pro mini V Mount Battery 

  •  2 USB-C, 1 D-Tap, 1 USB-A, 1 8V-OUT, 1 12V-OUT, allow simultaneous USB-C and USB-A fast charging
  • Top-class large-capacity LG battery cell endures repeated charging and discharging, safe and stable
  • Aluminum alloy and fireproof PC construction, sturdy and drop-proof
  • Durable, cratch-resistant PC and acrylic cover on the front
  • TFT color screen displays status clearly and accurately

SmallRig 4292 VB99 Pro mini V Mount Battery is about 70% the size of a normal V-mount battery, given its highly integrated design which takes up less space, making it lighter and more portable!

The highly integrated (fast charging protocol chip + MCU + voltage boost control) BMS chip supports a wide range of mainstream fast charging protocols (PD / QC / PPS etc.), bi-directional 100W (Max.)
USB-C PD fast charging, as well as adaptive voltage boost/ adaptive current regulation etc.
In addition, its customized intelligent BMS system ensures faster and safer charging by providing multiple protections against over-current / short-circuit / over-temperature / over-voltage etc.

Such interfaces as D-tap / USB-C / USB-A / 8V-OUT / 12V-OUT / BP electrode are also included for efficient charging / powering of camera / camcorder / monitor / wireless video transmitter / LED video light / mobile phone / laptop etc., without using a V-mount plate to convert!
The BMS chip has a 16bit ADC / power meter algorithm, together with an MCU and a TFT digital display for you to keep track of the battery's status at all times.

Built-in premium high-performance battery (no inflated capacity), which is rechargeable and stable, and meets MSDS / UN38.3 / IEC62133 / UL2054 / UL62368 and other internationally recognized standards.
Its shell is made of sturdy, drop-proof aluminum alloy and fireproof PC and features durable, cratch-resistant PC and acrylic cover on the front, with a TFT color screen displaying battery status clearly and accurately. Overall, this item is safe and powerful enough for you to capture every moment without burden. 

PowerADC power supply

Patented battery research and development technology, using fast charging PD3.0 technology, provides a superior high-speed charging experience. Battery certifications: FCC / CE / RoHS / ISED / RCM / PSE ( KC for safe and efficient usage.

10 minutes of charging, 2 hours of power

By upgrading to 100W high-power input, full charging time is shortened by 30%. It only takes 2.5 hours to fully charge the battery. A 10 minute charge will power a Sony Alpha 7C for 2.25 hours.

3500mAh per battery

The high-capacity 3500mAh (per lithium battery) provides high-rate charge and discharge, excellent cycle performance with a powerful output.

With the VB99 Pro you can charge and power:

  • Iphone 15 Pro Max: About 5.5 times
  • Ipad Pro 11”: About 3.1 times
  • Macbook Pro 14”: About 1.3 times
  • Canon EOS R5 C: Power about 7.3 hours (when shooting 8K 30p video)
  • Nikon Z8: Power about 6 hours (when shooting 8.3K 60p video)

Built-in protections for safe and secure opration

Imported LG power battery cells provide more stable charging and discharging cycles. BMS intelligent control system ensures voltage and current stability.

VB99 provides 8 built-in protections:

  • Over-discharge protection
  • Cell protection
  • Short circuit protection
  • Over-load protection
  • Low-temperature protection
  • High-temperature protection
  • Over-voltage protection
  • Over-current protection

Multiple built-in connections

Can be directly connected to mirrorless cameras, video cameras, monitors, wireless video transmitters, video lights, mobile phones, laptops and other equipment.

VB99 provides multiple connections:

  • 8V-Out interface
  • 12V-Out interface
  • USB-A interface
  • USB-C 1 (In / out interface)
  • USB-C 2 (Out interface)
  • D-tap interface
  • BP interface

Upgraded durable housing

The upgraded aluminum alloy housing offers enhanced safety and durability. Invisible anti-slip and skin-friendly design improves grip. Indulge in the refined texture of polished metal. Small, compact design, easy for traveling.

Status at a glance

The brighter, clearer TFT color display quickly and accurately shows the battery status and voltage of each active interface. The display is made of scratch-resistant PC + Acrylic composite materials.

In the Box:

  • 1 x VB99 Pro mini V-mount battery
  • 1 x 240W USB-C charging cable
  • 1 x User manual

Specifikationer

Tillverkare Smallrig
Kategori Batteri