21 references to ReadOnly
System.Web (4)
UI\WebControls\DetailsView.cs (2)
3651
return DataBoundControlMode.
ReadOnly
;
3654
return DataBoundControlMode.
ReadOnly
;
UI\WebControls\FormView.cs (2)
3079
return DataBoundControlMode.
ReadOnly
;
3082
return DataBoundControlMode.
ReadOnly
;
System.Web.DynamicData (17)
DynamicData\DefaultAutoFieldGenerator.cs (1)
65
return DataBoundControlMode.
ReadOnly
;
DynamicData\DynamicControl.cs (2)
153
DefaultValue(DataBoundControlMode.
ReadOnly
),
160
return ((o == null) ? DataBoundControlMode.
ReadOnly
: (DataBoundControlMode)o);
DynamicData\DynamicEntity.cs (2)
16
DefaultValue(DataBoundControlMode.
ReadOnly
),
23
return value != null ? (DataBoundControlMode)value : DataBoundControlMode.
ReadOnly
;
DynamicData\DynamicField.cs (2)
253
return DataBoundControlMode.
ReadOnly
;
264
return DataBoundControlMode.
ReadOnly
;
DynamicData\EntityTemplateFactory.cs (3)
83
GetVirtualPathFallback(table, DataBoundControlMode.
ReadOnly
, uiHint, DataBoundControlMode.
ReadOnly
);
120
string modeString = mode == DataBoundControlMode.
ReadOnly
? String.Empty : "_" + mode.ToString();
DynamicData\FieldTemplateFactory.cs (6)
162
mode = DataBoundControlMode.
ReadOnly
;
167
mode = DataBoundControlMode.
ReadOnly
;
175
mode = DataBoundControlMode.
ReadOnly
;
181
mode = DataBoundControlMode.
ReadOnly
;
188
mode = DataBoundControlMode.
ReadOnly
;
293
case DataBoundControlMode.
ReadOnly
:
DynamicData\SimpleFieldTemplateFactory.cs (1)
42
bool readOnly = (mode == DataBoundControlMode.
ReadOnly
);