Extjs表单设置值

tzcvj98z  于 2022-10-18  发布在  其他
关注(0)|答案(1)|浏览(184)

我通过Extjs Value Form属性设置了日期值,但是清除字段的函数不会出现在字段本身中,当从日历设置值时,它会出现。应该怎么做呢?enter image description here
enter image description here

z0qdvdin

z0qdvdin1#

在EXT 7.5中,您应该向您的字段添加触发器。

triggers: {
   clearTrigger: {
      cls: 'x-form-clear-trigger',
      handler: function() {
          //function to clean field
      }
   }
}

相关问题