fastadmin动态生成的Bootstrap-datetimepicker元素无法赋值
fastadmin动态生成的Bootstrap-datetimepicker元素在提交表单时无法将修改后的时间提交到后台,需要使用以下代码解决
$(document).on("fa.event.appendfieldlist", '[data-name="row[test]"] .btn-append', function(e, obj){
//通用的表单组件事件绑定和组件渲染
Form.api.bindevent(obj);
Form.events.datetimepicker($("form"));
});
主要代码:
Form.events.datetimepicker($("form"));