Exemplo n.º 1
0
 public DateTimePickerUI(jqSelector ElementId)
 {
     this.jqId = new jqSelector()
     {
         IdName = ElementId.IdName
     };
     this.Options = new DateTimePicker();
 }
Exemplo n.º 2
0
            public Options()
            {
                this.cityValue   = "桃園縣";
                this.countyValue = "中壢市";

                zipElement    = new jqSelector();
                countyElement = new jqSelector();
            }
            public Options()
            {
                this.cityValue = "桃園縣";
                this.countyValue = "中壢市";

                zipElement = new jqSelector();
                countyElement = new jqSelector();
            }
Exemplo n.º 4
0
        public static MvcHtmlString DateTimePickerPlugin(this HtmlHelper h, jqSelector ElemntID, DateTimePicker option)
        {
            DateTimePickerUI jqObj = new DateTimePickerUI(ElemntID);

            if (option != null)
            {
                jqObj.Options = option;
            }

            return(MvcHtmlString.Create(jqObj.ToScriptString()));
        }
Exemplo n.º 5
0
 public FineUploader(jqSelector ElementId)
 {
     this.jqId = ElementId;
     //request = new requestOptions() { inputName = "hd_FileUp_EL", endpoint = "ajax_UploadFiles" };
 }
Exemplo n.º 6
0
 public CKEditor(jqSelector ElementId)
 {
     this.jqId = ElementId;
     Options   = new CKEditorOpton();
 }
Exemplo n.º 7
0
 public AutocompleteHandle(jqSelector ElementID)
 {
     this.jqId    = ElementID;
     this.Id      = ElementID.IdName;
     this.Options = new Autocomplete();
 }
 public FormValidateSetup(jqSelector Id)
 {
     this.Id = Id;
     Option = new Validate();
 }
 public DateTimePickerUI(jqSelector ElementId)
 {
     this.jqId = new jqSelector() { IdName = ElementId.IdName };
     this.Options = new DateTimePicker();
 }
 public FineUploader(jqSelector ElementId)
 {
     this.jqId = ElementId;
     //request = new requestOptions() { inputName = "hd_FileUp_EL", endpoint = "ajax_UploadFiles" };
 }
 public AutocompleteHandle(jqSelector ElementID)
 {
     this.jqId = ElementID;
     this.Id = ElementID.IdName;
     this.Options = new Autocomplete();
 }
Exemplo n.º 12
0
 public ElementAjaxHandle(jqSelector Id)
     : base(Id)
 {
     _ajaxOption = new ajaxDeferred();
     jqEVT       = new jqEvents();
 }
Exemplo n.º 13
0
 public jqButton(jqSelector ElementId)
 {
     this.jqId = ElementId;
     this.options = new Options();
 }
Exemplo n.º 14
0
 public FormValidateSetup(jqSelector Id)
 {
     this.Id = Id;
     Option  = new Validate();
 }