gpt4 book ai didi

sproutcore - Sproutcore + handlebars + jquery-ui-如何通过handlebars生成的输入进行日期选择

转载 作者:行者123 更新时间:2023-12-03 13:38:22 25 4
gpt4 key购买 nike

问题在于,在 Handlebars 完成生成输入之前,会触发doc.ready。jQueryui需要将日期选择器设置为on。

有更好的 Activity 吗?

最佳答案

这是我在SC2演示应用程序(Chililog)中用于jQuery Data Picker的一些代码

App.MyField = App.TextBoxView.extend(App.CriteriaFieldDataMixin, {
valueBinding: 'App.pageController.fromDate',
name: 'fromDate',
placeholder: 'yyyy-mm-dd',
disabledBinding: SC.Binding.from('App.pageController.isSearching').oneWay().bool(),

/**
* Attach date picker to text box
*/
didInsertElement: function() {
this._super();
this.$().datepicker({ dateFormat: 'yy-mm-dd' });
}
})

使用 didInsertElement事件附加日期选择器。插入DOM元素后,会触发此事件。

关于sproutcore - Sproutcore + handlebars + jquery-ui-如何通过handlebars生成的输入进行日期选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8368017/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com