Loading from JavaScript
In case the document or string is already present at client-side, this document can be loaded with pure JavaScript into the editor.
This demo uses the MVC version of TXTextControl.Web included in TX Text Control .NET Server for ASP.NET. The functionality is compatible across all supported platforms.
Version 33.0
Sample Source Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Html.TXTextControl().TextControl(settings => | |
{ | |
settings.Dock = DockStyle.Fill; | |
}).Render() | |
<button onclick="LoadDocumentFromClient()" class="btn mt-3 btn-success">Load Document</button> |
No code required.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function LoadDocumentFromClient() { | |
var html = "This is some <b>HTML</b> text."; | |
var encoded = btoa(html); // btoa base-64-encodes strings. | |
TXTextControl.loadDocument(TXTextControl.StreamType.HTMLFormat, encoded); | |
} |
No code required.
© 2025 Copyright Text Control GmbH and Text Control, LLC. All rights reserved. We ♥ documents.