Facebook Facebook Instagram 607-535-9614
Light Festival Ballon Festival Farm Market Pick Your Own Wine Store CSA Program Events About Us Pub & Grill Admin Panel

Test js call


This page demonstrates how to invoke JavaScript (JS) functions from .NET. See doc here

Prerendered Interop Example3

Sometimes you may wish to use JavaScript (JS) libraries that produce visible user interface elements within the browser DOM. Fortunately, it's straightforward to embed externally-generated UI within a Razor component UI reliably. The recommended technique is to have the component's code (.razor file) produce an empty element. As far as Blazor's diffing system is concerned, the element is always empty, so the renderer does not recurse into the element and instead leaves its contents alone. This makes it safe to populate the element with arbitrary externally-managed content.

The following example demonstrates the concept. Within the if statement when firstRender is true, interact with unmanagedElement outside of Blazor using JS interop. For example, call an external JS library to populate the element. Blazor leaves the element's contents alone until this component is removed. When the component is removed, the component's entire DOM subtree is also removed.

Text during render

=========================================================