Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 28, 2020 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/2b9f86972abe1b4eea50288602cf1fb1 to your computer and use it in GitHub Desktop.
Save bjoerntx/2b9f86972abe1b4eea50288602cf1fb1 to your computer and use it in GitHub Desktop.
@using TXTextControl.Web
@using TXTextControl.Web.MVC
@model List<TXCoreBackend.Models.Customer>
<div class="row">
<div class="col-lg-12 editor">
@Html.TXTextControl().TextControl(settings =>
{
settings.Dock = DockStyle.Fill;
}).LoadDataFromModel(Model).Render()
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment