(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web / System.Web.UI.WebControls / EditCommandColumn.cs
blobc11e01c145d60318a524ed3e4e2645934d331cdc
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining
4 // a copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to
8 // permit persons to whom the Software is furnished to do so, subject to
9 // the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be
12 // included in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 /**
23 * Namespace: System.Web.UI.WebControls
24 * Class: EditCommandColumn
26 * Author: Gaurav Vaish
27 * Maintainer: gvaish@iitk.ac.in
28 * Contact: <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
29 * Implementation: yes
30 * Status: 100%
32 * (C) Gaurav Vaish (2002)
35 using System;
36 using System.Web;
37 using System.Web.UI;
39 namespace System.Web.UI.WebControls
41 public class EditCommandColumn : DataGridColumn
43 public EditCommandColumn(): base()
47 public virtual ButtonColumnType ButtonType
49 get
51 object o = ViewState["ButtonType"];
52 if(o != null)
54 return (ButtonColumnType)o;
56 return ButtonColumnType.LinkButton;
58 set
60 if(!Enum.IsDefined(typeof(ButtonColumnType), value))
62 throw new ArgumentException();
64 ViewState["ButtonType"] = value;
65 OnColumnChanged();
69 public virtual string CancelText
71 get
73 object o = ViewState["CancelText"];
74 if(o != null)
76 return (string)o;
78 return String.Empty;
80 set
82 ViewState["CancelText"] = value;
83 OnColumnChanged();
87 public virtual string EditText
89 get
91 object o = ViewState["EditText"];
92 if(o != null)
94 return (string)o;
96 return String.Empty;
98 set
100 ViewState["EditText"] = value;
101 OnColumnChanged();
105 public virtual string UpdateText
109 object o = ViewState["UpdateText"];
110 if(o != null)
112 return (string)o;
114 return String.Empty;
118 ViewState["UpdateText"] = value;
119 OnColumnChanged();
123 public override void InitializeCell(TableCell cell, int columnIndex, ListItemType itemType)
125 base.InitializeCell(cell, columnIndex, itemType);
127 if (itemType == ListItemType.Header || itemType == ListItemType.Footer)
128 return;
130 if (itemType == ListItemType.EditItem) {
131 cell.Controls.Add (MakeButton ("Update", UpdateText));
132 cell.Controls.Add (new LiteralControl ("&nbsp;"));
133 cell.Controls.Add (MakeButton ("Cancel", CancelText));
134 } else {
135 cell.Controls.Add (MakeButton ("Edit", EditText));
139 Control MakeButton (string commandName, string text)
141 if (ButtonType == ButtonColumnType.LinkButton) {
142 DataGridLinkButton ret = new DataGridLinkButton ();
143 ret.CommandName = commandName;
144 ret.Text = text;
145 return ret;
146 } else {
147 Button ret = new Button ();
148 ret.CommandName = commandName;
149 ret.Text = text;
150 return ret;