Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion modules/ROOT/partials/integrations/blazor-tech-ref.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Set the editor to inline mode.

=== `Disable`

Set the editor to readonly mode.
Sets the editor to a disable state.

*Type:* `+Boolean+`

Expand All @@ -139,6 +139,24 @@ Set the editor to readonly mode.
<button @onclick="@(() => disable = !disable)">Toggle</button>
----

=== `Readonly`

Sets the editor to readonly mode.

*Type:* `+Boolean+`

*Default value:* `+false+`

==== Example using Readonly

[source,cs]
----
<Editor
Readonly=@readonly
/>
<button @onclick="@(() => readonly = !readonly)">Toggle</button>
----

=== `JsConfSrc`

Use a JS object as base configuration for the editor by specifying the path to the object relative to the window object.
Expand Down