1 type derived from DataControlFieldCell
System.Web (1)
UI\WebControls\DataControlFieldHeaderCell.cs (1)
15
public class DataControlFieldHeaderCell :
DataControlFieldCell
{
3 instantiations of DataControlFieldCell
System.Web (3)
UI\WebControls\DetailsView.cs (2)
2748
DataControlFieldCell contentCell = new
DataControlFieldCell
(field);
2756
DataControlFieldCell headerTextCell = new
DataControlFieldCell
(field);
UI\WebControls\GridView.cs (1)
3344
cell = new
DataControlFieldCell
(fields[i]);
36 references to DataControlFieldCell
System.Web (34)
UI\WebControls\AutoGeneratedField.cs (2)
138
public override void ExtractValuesFromCell(IOrderedDictionary dictionary,
DataControlFieldCell
cell, DataControlRowState rowState, bool includeReadOnly) {
172
protected override void InitializeDataCell(
DataControlFieldCell
cell, DataControlRowState rowState) {
UI\WebControls\BoundField.cs (3)
330
public override void ExtractValuesFromCell(IOrderedDictionary dictionary,
DataControlFieldCell
cell, DataControlRowState rowState, bool includeReadOnly) {
539
public override void InitializeCell(
DataControlFieldCell
cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex) {
569
protected virtual void InitializeDataCell(
DataControlFieldCell
cell, DataControlRowState rowState) {
UI\WebControls\ButtonField.cs (1)
203
public override void InitializeCell(
DataControlFieldCell
cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex) {
UI\WebControls\CheckBoxField.cs (2)
232
public override void ExtractValuesFromCell(IOrderedDictionary dictionary,
DataControlFieldCell
cell, DataControlRowState rowState, bool includeReadOnly) {
271
protected override void InitializeDataCell(
DataControlFieldCell
cell, DataControlRowState rowState) {
UI\WebControls\CommandField.cs (2)
499
private void AddButtonToCell(
DataControlFieldCell
cell, string commandName, string buttonText, bool causesValidation, string validationGroup, int rowIndex, string imageUrl) {
585
public override void InitializeCell(
DataControlFieldCell
cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex) {
UI\WebControls\DataControlField.cs (4)
94
/// This property is accessed by <see cref='System.Web.UI.WebControls.
DataControlFieldCell
'/>.
96
/// <see cref='System.Web.UI.WebControls.
DataControlFieldCell
'/> gets the correct value.
446
public virtual void ExtractValuesFromCell(IOrderedDictionary dictionary,
DataControlFieldCell
cell, DataControlRowState rowState, bool includeReadOnly) {
463
public virtual void InitializeCell(
DataControlFieldCell
cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex) {
UI\WebControls\DataControlFieldCell.cs (3)
37
/// <see cref='System.Web.UI.WebControls.
DataControlFieldCell
'/> gets the value of ValidateRequestMode from it's <see cref='System.Web.UI.WebControls.
DataControlFieldCell
.ContainingField'/>.
38
/// The ValidateRequestMode property should not be set directly on <see cref='System.Web.UI.WebControls.
DataControlFieldCell
'/>.
UI\WebControls\DetailsView.cs (7)
2225
((DataControlField)fields[i]).ExtractValuesFromCell(newValues, rows[i].Cells[cellIndex] as
DataControlFieldCell
, rows[i].RowState, includeReadOnlyFields);
2748
DataControlFieldCell
contentCell = new DataControlFieldCell(field);
2756
DataControlFieldCell
headerTextCell = new DataControlFieldCell(field);
3261
DataControlFieldCell
headerFieldCell = row.Cells[0] as
DataControlFieldCell
;
3320
DataControlFieldCell
contentFieldCell = null;
3327
contentFieldCell = row.Cells[contentCellIndex] as
DataControlFieldCell
;
UI\WebControls\GridView.cs (4)
2762
((DataControlField)fieldsArray[i]).ExtractValuesFromCell(newValues, row.Cells[i] as
DataControlFieldCell
, row.RowState, includeReadOnlyFields);
3330
DataControlFieldCell
cell;
4061
DataControlFieldCell
fieldCell = cell as
DataControlFieldCell
;
UI\WebControls\HyperLinkField.cs (1)
290
public override void InitializeCell(
DataControlFieldCell
cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex) {
UI\WebControls\ImageField.cs (3)
273
public override void ExtractValuesFromCell(IOrderedDictionary dictionary,
DataControlFieldCell
cell, DataControlRowState rowState, bool includeReadOnly) {
437
public override void InitializeCell(
DataControlFieldCell
cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex) {
447
protected virtual void InitializeDataCell(
DataControlFieldCell
cell, DataControlRowState rowState) {
UI\WebControls\TemplateField.cs (2)
227
public override void ExtractValuesFromCell(IOrderedDictionary dictionary,
DataControlFieldCell
cell, DataControlRowState rowState, bool includeReadOnly) {
268
public override void InitializeCell(
DataControlFieldCell
cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex) {
System.Web.DynamicData (2)
DynamicData\DynamicField.cs (2)
195
public override void InitializeCell(
DataControlFieldCell
cell, DataControlCellType cellType,
271
public override void ExtractValuesFromCell(IOrderedDictionary dictionary,
DataControlFieldCell
cell,