Skip to content

Instantly share code, notes, and snippets.

@vkoppaka
Created May 24, 2012 05:29
Show Gist options
  • Select an option

  • Save vkoppaka/2779645 to your computer and use it in GitHub Desktop.

Select an option

Save vkoppaka/2779645 to your computer and use it in GitHub Desktop.
<%
Html.Telerik().EditorFor(model=>model.Name)
.Name("PersonDescription")
.HtmlAttributes(new { style = "height:200px" })
.Value("Please enter your description here")
.Tools(tool => tool
.Clear()
.Bold()
.Italic()
.Underline()
.Snippets(snippet=>snippet.Add("Greeting","<h1>Hello World</h1>")))
.Render();
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment