File: D:/HostingSpaces/RMourik/bassol.nl/wwwroot/CMSFormControls/Basic/CheckBoxControl.ascx.cs
using System;
using CMS.ExtendedControls;
using CMS.FormControls;
using CMS.FormEngine;
using CMS.Helpers;
public partial class CMSFormControls_Basic_CheckBoxControl : FormEngineUserControl
{
#region "Properties"
/// <summary>
/// Gets or sets the enabled state of the control.
/// </summary>
public override bool Enabled
{
get
{
return checkbox.Enabled;
}
set
{
checkbox.Enabled = value;
}
}
/// <summary>
/// Gets or sets checkbox text.
/// </summary>
public new string Text
{
get
{
return GetValue("Text", String.Empty);
}
set
{
SetValue("Text", value);
}
}
/// <summary>
/// Gets or sets form control value.
/// </summary>
public override object Value
{
get
{
return checkbox.Checked;
}
set
{
bool defValue = (FieldInfo != null) && ValidationHelper.GetBoolean(FieldInfo.GetPropertyValue(FormFieldPropertyEnum.DefaultValue, ContextResolver), false);
checkbox.Checked = ValidationHelper.GetBoolean(value, defValue);
}
}
/// <summary>
/// Gets or sets if control causes postback.
/// </summary>
public bool AutoPostBack
{
get
{
return checkbox.AutoPostBack;
}
set
{
checkbox.AutoPostBack = value;
}
}
#endregion
#region "Methods"
protected void Page_Load(object sender, EventArgs e)
{
// Apply CSS styles
if (!String.IsNullOrEmpty(CssClass))
{
checkbox.AddCssClass(CssClass);
CssClass = null;
}
else if (String.IsNullOrEmpty(checkbox.CssClass))
{
checkbox.AddCssClass("CheckBoxField");
}
if (!String.IsNullOrEmpty(ControlStyle))
{
checkbox.Attributes.Add("style", ControlStyle);
ControlStyle = null;
}
if (!String.IsNullOrEmpty(Text))
{
checkbox.Text = ResHelper.GetString(Text);
}
CheckFieldEmptiness = false;
// Use Changed event for checkbox state change handling
checkbox.CheckedChanged += (o, args) => RaiseOnChanged();
}
#endregion
}