public uploadFieldPreValue(Cms.BusinessLogic.datatype.BaseDataType DataType) 
		{
			// state it knows its datatypedefinitionid
			_datatype = DataType;
			setupChildControls();

		}
Example #2
0
 /// <summary>
 /// The default editor for editing the build-in pre values in Umbraco
 /// </summary>
 /// <param Name="DataType">The DataType to be parsed</param>
 /// <param Name="DisplayTextBox">Whether to use the default text box</param>
 public DefaultPrevalueEditor(Cms.BusinessLogic.datatype.BaseDataType DataType, bool DisplayTextBox)
 {
     // state it knows its datatypedefinitionid
     _displayTextBox = DisplayTextBox;
     _datatype       = DataType;
     setupChildControls();
 }
 /// <summary>
 /// The default editor for editing the build-in pre values in Umbraco
 /// </summary>
 /// <param Name="DataType">The DataType to be parsed</param>
 /// <param Name="DisplayTextBox">Whether to use the default text box</param>
 public DefaultPrevalueEditor(Cms.BusinessLogic.datatype.BaseDataType DataType, bool DisplayTextBox)
 {
     // state it knows its datatypedefinitionid
     _displayTextBox = DisplayTextBox;
     _datatype = DataType;
     setupChildControls();
 }
		public mailerConfiguratorPreValueEditor(Cms.BusinessLogic.datatype.BaseDataType DataType) 
		{
			// state it knows its datatypedefinitionid
			_datatype = DataType;
			setupChildControls();

		}
Example #5
0
        public KeyValuePrevalueEditor(Cms.BusinessLogic.datatype.BaseDataType DataType)
        {
            // state it knows its datatypedefinitionid
            _datatype = DataType;
            setupChildControls();

            // Bootstrap delete.
            if (System.Web.HttpContext.Current.Request["delete"] != null)
            {
                DeletePrevalue(int.Parse(System.Web.HttpContext.Current.Request["delete"]));
            }
        }
		public KeyValuePrevalueEditor(Cms.BusinessLogic.datatype.BaseDataType DataType) 
		{
			// state it knows its datatypedefinitionid
			_datatype = DataType;
			setupChildControls();

			// Bootstrap delete.
			if (System.Web.HttpContext.Current.Request["delete"] != null) {
				DeletePrevalue(int.Parse(System.Web.HttpContext.Current.Request["delete"]));
			}
			
		}
Example #7
0
 public DateData(Cms.BusinessLogic.datatype.BaseDataType DataType) : base(DataType)
 {
 }
 public uploadFieldPreValue(Cms.BusinessLogic.datatype.BaseDataType DataType)
 {
     // state it knows its datatypedefinitionid
     _datatype = DataType;
     setupChildControls();
 }
 public mailerConfiguratorPreValueEditor(Cms.BusinessLogic.datatype.BaseDataType DataType)
 {
     // state it knows its datatypedefinitionid
     _datatype = DataType;
     setupChildControls();
 }