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]
40 lines
758 B
C#
40 lines
758 B
C#
using System;
|
|
using System.Data;
|
|
using Microsoft.ApplicationBlocks.Data;
|
|
using System.Data.SqlClient;
|
|
using System.Web.UI;
|
|
using ClientDependency.Core;
|
|
using umbraco.IO;
|
|
using umbraco.interfaces;
|
|
using umbraco.uicontrols.TreePicker;
|
|
|
|
namespace umbraco.macroRenderings
|
|
{
|
|
|
|
public class content : SimpleContentPicker, IMacroGuiRendering
|
|
{
|
|
|
|
#region IMacroGuiRendering Members
|
|
|
|
string IMacroGuiRendering.Value
|
|
{
|
|
get
|
|
{
|
|
return Value;
|
|
}
|
|
set
|
|
{
|
|
Value = value;
|
|
}
|
|
}
|
|
|
|
bool IMacroGuiRendering.ShowCaption
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|