Mega Commit: New controls: tree control, pickers of all sorts, image viewer, media uploader. Removed a zillion iframes. New modal window standard framework. Fixes some bugs. ClientDependency & Examine DLL updates. Lots of JS enhancements, libs and more methods added to ClientTools. [TFS Changeset #63838]
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using System;
|
|
|
|
namespace umbraco.interfaces
|
|
{
|
|
|
|
/// <summary>
|
|
/// The IDataEditor is part of the IDataType interface for creating new data types in the umbraco backoffice.
|
|
/// The IDataEditor represents the editing UI for the Data Type.
|
|
/// </summary>
|
|
public interface IDataEditor
|
|
{
|
|
/// <summary>
|
|
/// Saves this instance.
|
|
/// </summary>
|
|
void Save();
|
|
/// <summary>
|
|
/// Gets a value indicating whether a label is shown
|
|
/// </summary>
|
|
/// <value><c>true</c> if [show label]; otherwise, <c>false</c>.</value>
|
|
bool ShowLabel {get;}
|
|
/// <summary>
|
|
/// Gets a value indicating whether the editor should be treated as a rich text editor.
|
|
/// </summary>
|
|
/// <value>
|
|
/// <c>true</c> if [treat as rich text editor]; otherwise, <c>false</c>.
|
|
/// </value>
|
|
bool TreatAsRichTextEditor {get;}
|
|
/// <summary>
|
|
/// Gets the editor control
|
|
/// </summary>
|
|
/// <value>The editor.</value>
|
|
System.Web.UI.Control Editor{get;}
|
|
}
|
|
}
|