easyUI中datetimebox和combobox的取值方法

Posted 西沙浪花白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyUI中datetimebox和combobox的取值方法相关的知识,希望对你有一定的参考价值。

easyUi页面布局中,查询条件放在JS中,如下

<script type="text/javascript">
 var columnList = [ [
   {
    ‘id‘ : ‘applyStartTime‘,
    ‘text‘ : ‘申请开始时间‘,
    ‘type‘ : ‘datetimebox‘
   },
   {
    ‘id‘ : ‘applyEndTime‘,
    ‘text‘ : ‘申请结束时间‘,
    ‘type‘ : ‘datetimebox‘
   },
   {
    ‘id‘ : ‘applyStatus‘,
    ‘text‘ : ‘申请状态‘,
    ‘type‘ : ‘combobox‘,
    ‘options‘ : ‘valueField:\‘itemNo\‘,\‘textField\‘:\‘itemName\‘,panelMaxHeight:100,url:\‘‘
      + CONTEXT_PATH
      + ‘/code/getItemList.json?codeNo=APPLY_STATUS\‘‘
   },
   {
    ‘id‘ : ‘orderStatus‘,
    ‘text‘ : ‘放款状态‘,
    ‘type‘ : ‘combobox‘,
    ‘options‘ : ‘valueField:\‘itemNo\‘,\‘textField\‘:\‘itemName\‘,panelMaxHeight:100,url:\‘‘
      + CONTEXT_PATH
      + ‘/code/getItemList.json?codeNo=ORDER_STATUS\‘‘
   } ] ];
 var submitType = "Map";
</script>

 

如何取上面查询条件的值呢?

如下解决:

//获取参数
   var applyStartTime = $("#applyStartTime").datetimebox("getValue");
   var applyEndTime = $("#applyEndTime").datetimebox("getValue");
   var applyStatus =$("#applyStatus").combobox(‘getValue‘);
   var orderStatus = $("#orderStatus").combobox(‘getValue‘);

 

以上是关于easyUI中datetimebox和combobox的取值方法的主要内容,如果未能解决你的问题,请参考以下文章

easyui-datetimebox 控件绑定双击事件实现自动选中当前日期时间

easyui下的datetimebox日期控件如何设置才能在ie9浏览器下显示。急用,求各位大神帮帮

一个easyui的datagrid的Editer的问题

easyui textbox 赋值

EasyUI值的清空与获取

为Jquery EasyUI 组件加上“清除”功能