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]
17 lines
390 B
C#
17 lines
390 B
C#
using System;
|
|
|
|
namespace umbraco.interfaces
|
|
{
|
|
/// <summary>
|
|
/// The alternative Data Editor which supports AJAX
|
|
/// </summary>
|
|
public interface IDataEditorAjaxAlternative
|
|
{
|
|
/// <summary>
|
|
/// Gets the ajax editor.
|
|
/// </summary>
|
|
/// <value>The ajax editor.</value>
|
|
System.Web.UI.Control AjaxEditor { get; }
|
|
}
|
|
}
|