You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@page "/"
@using BlazorMonaco.Editor<PageTitle>Home</PageTitle><h1>Hello, world!</h1><input @bind="content"/><button @onclick="() => visible = !visible">Toggle</button>@if(visible){<p>Visible!</p><StandaloneCodeEditor Id="main-editor"CssClass="editor"ConstructionOptions="GetConstructionOptions"/>}Welcome to your newapp.@code{private string content ="{}";
private bool visible =false;
public StandaloneEditorConstructionOptionsGetConstructionOptions(StandaloneCodeEditoreditor)=>new(){Language="json",Value=content};
When button is pressed it toggles visibility of StandaloneCodeEditor. It either is added or removed from the DOM. When displayed for the first time, it correctly obtains value from input, but after every consecutive toggle value is not updated and remains the same in the editor.
EDIT:
I have made some digging and discovered this snippet when editor is created:
I have no idea why it is overriding new value in options with value from previous instance, I don't think of any scenario where it would be a desired behaviour.
I have managed to fix this issue by inserting this code to my App.razor:
Consider this file:
When button is pressed it toggles visibility of StandaloneCodeEditor. It either is added or removed from the DOM. When displayed for the first time, it correctly obtains value from input, but after every consecutive toggle value is not updated and remains the same in the editor.
EDIT:
I have made some digging and discovered this snippet when editor is created:
I have no idea why it is overriding new value in options with value from previous instance, I don't think of any scenario where it would be a desired behaviour.
I have managed to fix this issue by inserting this code to my
App.razor
:The text was updated successfully, but these errors were encountered: