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
Usually when I reference a blazorise component then I can ref it and access the autogenerated ElementId.
Example
<Button @ref="TheButton">Click me</Button>
@code{
private Button TheButton;
private void someMethod(){
var buttonAutogeneratedElementId = TheButton.ElementId;
// use the elementId in some JS operation
}
}
However, if the component is the RichTextEditor then the ElementId is null and I have to come up with my own way of uniquely generating it.
Usually when I reference a blazorise component then I can ref it and access the autogenerated ElementId.
Example
However, if the component is the RichTextEditor then the ElementId is null and I have to come up with my own way of uniquely generating it.
For now, I have worked around the issue like this
I am using version 0.9.5
The text was updated successfully, but these errors were encountered: