|
版本: |
BeX5V3.5 |
小版本号: |
|
|
|
数据库: |
Oracle |
服务器操作系统: |
|
应用服务器: |
|
客户端操作系统: |
Windows 其它 |
浏览器: |
Chrome |
|
|
问题是:源码的input可以选择日期,动态添加之后就选择不了日期了。
input源码:- <input component="$UI/system/components/justep/input/input"
- class="iInput" xid="jgsj0" format="yyyy-MM-dd" dataType="Date"
- style="text-align:center"/>
复制代码 tr源码:
- "<tr xid='fwxx" + trxid + "'><input component='$UI/system/components/justep/input/input' class='iInput' xid='jgsj' format='yyyy-MM-dd' dataType='Date' style='text-align:center'/></tr>"
复制代码
tr添加源码:
- $("tr[xid='fwxx']").after(tr);
复制代码 尝试解决方法:new一个input
- var inputs = new Input({
- // component : '$UI/system/components/justep/input/input',
- class : "iInput",
- xid : "jgsj" + ye,
- style : "text-align:center",
- /*
- * 'data-config':{ dataType : "Date", format : "yyyy-MM-dd" },
- */
- autoComplete : false
- });
复制代码 然后把new出来的input放进tr中
- var jgsjtr = $("td[xid='jgsjtr']");
- justep.Component.addComponent(jgsjtr, inputs);
复制代码 问题也还是没有解决,请问此问题如何解决
|
|