105 lines
3.9 KiB
C#
105 lines
3.9 KiB
C#
using System.Web.UI;
|
|
using System.Web.UI.HtmlControls;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace umbraco.editorControls
|
|
{
|
|
/// <summary>
|
|
/// Extension methods for the Prevalue Editor
|
|
/// </summary>
|
|
public static class PrevalueEditorExtensions
|
|
{
|
|
/// <summary>
|
|
/// Adds the prevalue controls.
|
|
/// </summary>
|
|
/// <param name="collection">The collection.</param>
|
|
/// <param name="controls">The controls.</param>
|
|
public static void AddPrevalueControls(this ControlCollection collection, params Control[] controls)
|
|
{
|
|
foreach (var control in controls)
|
|
{
|
|
collection.Add(control);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds the prevalue row heading.
|
|
/// </summary>
|
|
/// <param name="writer">The writer.</param>
|
|
/// <param name="heading">The heading.</param>
|
|
public static void AddPrevalueHeading(this HtmlTextWriter writer, string heading)
|
|
{
|
|
writer.AddAttribute(HtmlTextWriterAttribute.Class, "row clearfix");
|
|
writer.RenderBeginTag(HtmlTextWriterTag.Div); // start 'row'
|
|
|
|
writer.RenderBeginTag(HtmlTextWriterTag.H3); // start 'h3'
|
|
|
|
writer.Write(heading);
|
|
|
|
writer.RenderEndTag(); // end 'h3'
|
|
|
|
writer.RenderEndTag(); // end 'row'
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a new row to the Prevalue Editor.
|
|
/// </summary>
|
|
/// <param name="writer">The HtmlTextWriter.</param>
|
|
/// <param name="label">The label for the field.</param>
|
|
/// <param name="controls">The controls for the field.</param>
|
|
public static void AddPrevalueRow(this HtmlTextWriter writer, string label, params Control[] controls)
|
|
{
|
|
writer.AddPrevalueRow(label, string.Empty, controls);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a new row to the Prevalue Editor, (with an optional description).
|
|
/// </summary>
|
|
/// <param name="writer">The HtmlTextWriter.</param>
|
|
/// <param name="label">The label for the field.</param>
|
|
/// <param name="description">The description for the field.</param>
|
|
/// <param name="controls">The controls for the field.</param>
|
|
public static void AddPrevalueRow(this HtmlTextWriter writer, string label, string description, params Control[] controls)
|
|
{
|
|
writer.AddAttribute(HtmlTextWriterAttribute.Class, "row clearfix");
|
|
writer.RenderBeginTag(HtmlTextWriterTag.Div); // start 'row'
|
|
|
|
writer.AddAttribute(HtmlTextWriterAttribute.Class, "label");
|
|
writer.RenderBeginTag(HtmlTextWriterTag.Div); // start 'label'
|
|
|
|
var lbl = new HtmlGenericControl("label") { InnerText = label };
|
|
|
|
if (controls.Length > 0 && !string.IsNullOrEmpty(controls[0].ClientID))
|
|
{
|
|
lbl.Attributes.Add("for", controls[0].ClientID);
|
|
}
|
|
|
|
lbl.RenderControl(writer);
|
|
|
|
writer.RenderEndTag(); // end 'label'
|
|
|
|
writer.AddAttribute(HtmlTextWriterAttribute.Class, "field");
|
|
writer.RenderBeginTag(HtmlTextWriterTag.Div); // start 'field'
|
|
|
|
foreach (var control in controls)
|
|
{
|
|
control.RenderControl(writer);
|
|
}
|
|
|
|
writer.RenderEndTag(); // end 'field'
|
|
|
|
if (!string.IsNullOrEmpty(description))
|
|
{
|
|
writer.AddAttribute(HtmlTextWriterAttribute.Class, "description");
|
|
writer.RenderBeginTag(HtmlTextWriterTag.Div); // start 'description'
|
|
|
|
Label desc = new Label() { Text = description };
|
|
desc.RenderControl(writer);
|
|
|
|
writer.RenderEndTag(); // end 'description'
|
|
}
|
|
|
|
writer.RenderEndTag(); // end 'row'
|
|
}
|
|
}
|
|
} |