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