/// <summary>
 /// For backwards compatibility, should be replaced in your extension with the constructor that
 /// uses the BaseDataType from the cms.businesslogic.datatype namespace
 /// </summary>
 /// <param name="DataType">The DataType to be parsed (note: the BaseDataType from editorControls is obsolete)</param>
 /// <param name="DisplayTextBox">Whether to use the default text box</param>
 public DefaultPrevalueEditor(BaseDataType DataType, bool DisplayTextBox)
 {
     // state it knows its datatypedefinitionid
     _displayTextBox = DisplayTextBox;
     _datatypeOld = DataType;
     setupChildControls();
 }
예제 #2
0
		public DefaultData(BaseDataType DataType) {
			_dataType = DataType;
		}
예제 #3
0
 public DefaultData(BaseDataType DataType)
 {
     _dataType = DataType;
 }