CallBackery

 view release on metacpan or  search on metacpan

lib/CallBackery/qooxdoo/callbackery/source/class/callbackery/ui/form/Auto.js  view on Meta::CPAN

                }
            }
            this._settingData++;
            ctrl.setModel(model);
            ctrl.setValue(newItem);
            this._settingData--;
        },


        /**
         * set the data in a combobox
         *
         * @param box {var} TODOC
         * @param widget {var} TODOC
         * @param data {var} TODOC
         */
        setComboBoxData : function(box, data) {
            let ctrl  = this._boxCtrl[box];
            this._settingData++;
            ctrl.setModel(qx.data.marshal.Json.createModel(data));
            this._settingData--;

lib/CallBackery/qooxdoo/callbackery/source/class/callbackery/ui/form/DateTime.js  view on Meta::CPAN

          var date = this.getValue();
          if (date != null) {
              chooser.setValue(date);
          }
      }
    },


    /**
     * Reacts on value changes of the text field and syncs the
     * value to the combobox.
     *
     * @param e {qx.event.type.Data} Change event
     */
    _onDateFieldChangeValue : function(e)
    {
      // Apply to popup
      var date = e.getData();
      if (date != null && date != '')
      {



( run in 0.532 second using v1.01-cache-2.11-cpan-2398b32b56e )