0

Is it possible i use some WYSIWYG editors like TinyMCE or FCK Editor instead of MultiLine Textbox for ASP.NET Dynamic Data?

The default object is a server side object but i want to use a client side objects that working ajax.

Konstantin
  • 796
  • 1
  • 11
  • 32
Saman Gholami
  • 3,416
  • 7
  • 30
  • 71

1 Answers1

4

You should create custom Field Template MultiLineEditor_Edit.ascx (copy from MultilineText_Edit.ascx Field Template) and then add to MultiLineEditor_Edit.ascx, for example, HTMLEditorExtender.

Then edit your metadata:

[UIHint("MultiLineEditor")]
public object ColumnName { get; set; }

For more information please read article How to: Customize ASP.NET Dynamic Data Default Field Templates.

Konstantin
  • 796
  • 1
  • 11
  • 32