easyui在使用过程,遇到以下问题:
1. easyui1.3.1版本不能支持IE9浏览器分页功能,表现为:Action后台接收从页面传来的pagenum为空或为总条数;
2. easyui1.2.5中的combox没有data-options属性,如需要指定url等属性,需要单独作为属性来使用,如:
<select id="<s:property value='#field.name'/>"
name="map.<s:property value='#field.name'/>"
class="easyui-combobox"
style="width:200px;"
url="${ctx}/rims/meta/metaDatadictionaryList.do?name=<s:property value="#field.combox"/>",
valueField="columnname",
textField="columnname",
required="true",
editable="false",
panelHeight="auto",
required="true",
missingMessage="<s:property value='#field.text'/>不能为空"
/>
3.easyui1.2.5不支持data-options属性,所有在1.3.1的版本里使用data-options属性里的内容,如果在转换成1.2.5版本时,需要把之前里的data-options属性里的内容单独作为属性使用;
4.