Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个日期选择器和一个组合框,当我从组合框中选择一个值时,我希望日期选择器配置“格式”更改为所选值,并显示对应于所选格式。我怎样才能做到这一点?任何帮助表示赞赏。
我用过Ext.apply:
Ext.apply
Ext.apply(datepicker, {format: 'LanguageValue'});
这会将“LanguageValue”应用于日期选择器组件的格式配置。