Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

192 lines
5.6 KiB
C#

//
// System.Web.UI.WebControls.ButtonColumn.cs
//
// Author:
// Dick Porter <dick@ximian.com>
// Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// Copyright (C) 2005-2010 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.ComponentModel;
using System.Security.Permissions;
namespace System.Web.UI.WebControls
{
// CAS
[AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
public class ButtonColumn : DataGridColumn
{
string text_field;
string format;
[DefaultValue(ButtonColumnType.LinkButton)]
[WebSysDescription("The type of button contained within the column.")]
[WebCategory ("Misc")]
public virtual ButtonColumnType ButtonType {
get {
return (ButtonColumnType) ViewState.GetInt ("LinkButton",
(int) ButtonColumnType.LinkButton);
}
set { ViewState ["LinkButton"] = value; }
}
[DefaultValue("")]
[WebSysDescription("The command associated with the button.")]
[WebCategory ("Misc")]
public virtual string CommandName {
get { return ViewState.GetString ("CommandName", String.Empty); }
set { ViewState ["CommandName"] = value; }
}
[DefaultValue (false)]
[WebSysDescription("")]
[WebCategory ("Behavior")]
public virtual bool CausesValidation {
get { return ViewState.GetBool ("CausesValidation", false); }
set { ViewState ["CausesValidation"] = value; }
}
[DefaultValue("")]
[WebSysDescription("The field bound to the text property of the button.")]
[WebCategory ("Misc")]
public virtual string DataTextField {
get { return ViewState.GetString ("DataTextField", String.Empty); }
set { ViewState ["DataTextField"] = value; }
}
[DefaultValue("")]
[WebSysDescription("The formatting applied to the value bound to the Text property.")]
[WebCategory ("Misc")]
public virtual string DataTextFormatString {
get { return ViewState.GetString ("DataTextFormatString", String.Empty); }
set {
ViewState ["DataTextFormatString"] = value;
format = null;
}
}
[DefaultValue("")]
[Localizable (true)]
[WebSysDescription("The text used for the button.")]
[WebCategory ("Misc")]
public virtual string Text {
get { return ViewState.GetString ("Text", String.Empty); }
set { ViewState ["Text"] = value; }
}
[DefaultValue ("")]
[WebSysDescription("")]
[WebCategory ("Behavior")]
public virtual string ValidationGroup {
get { return ViewState.GetString ("ValidationGroup", String.Empty); }
set { ViewState ["ValidationGroup"] = value; }
}
public override void Initialize ()
{
/* No documentation for this method, so it's
* only here to keep corcompare quiet
*/
base.Initialize ();
}
public override void InitializeCell (TableCell cell, int columnIndex, ListItemType itemType)
{
base.InitializeCell (cell, columnIndex, itemType);
if (itemType != ListItemType.Header && itemType != ListItemType.Footer) {
switch (ButtonType) {
case ButtonColumnType.LinkButton:
{
LinkButton butt = new ForeColorLinkButton ();
butt.Text = Text;
butt.CommandName = CommandName;
if (!String.IsNullOrEmpty (DataTextField))
butt.DataBinding += new EventHandler (DoDataBind);
cell.Controls.Add (butt);
}
break;
case ButtonColumnType.PushButton:
{
Button butt = new Button ();
butt.Text = Text;
butt.CommandName = CommandName;
if (!String.IsNullOrEmpty (DataTextField))
butt.DataBinding += new EventHandler (DoDataBind);
cell.Controls.Add (butt);
}
break;
}
}
}
string GetValueFromItem (DataGridItem item)
{
object val = null;
if (text_field == null)
text_field = DataTextField;
if (!String.IsNullOrEmpty (text_field))
val = DataBinder.Eval (item.DataItem, text_field);
return FormatDataTextValue (val);
}
void DoDataBind (object sender, EventArgs e)
{
Control ctrl = (Control) sender;
string text = GetValueFromItem ((DataGridItem) ctrl.NamingContainer);
LinkButton lb = sender as LinkButton;
if (lb == null) {
Button b = (Button) sender;
b.Text = text;
} else
lb.Text = text;
}
protected virtual string FormatDataTextValue (object dataTextValue)
{
if (dataTextValue == null)
return String.Empty;
if (format == null)
format = DataTextFormatString;
if (String.IsNullOrEmpty (format))
return dataTextValue.ToString ();
return String.Format (format, dataTextValue);
}
}
}