首页 > 其他分享 >easyui-datagrid 加载数据 方法一( 数据绑定方式 )

easyui-datagrid 加载数据 方法一( 数据绑定方式 )

时间:2024-01-31 16:33:24浏览次数:22  
标签:name easyui 绑定 modified datagrid var switch date entered

 效果图

 html 部分

<div style='padding:0px 0px 7px 12px ;'> 
        <table class="my_table" > 
            <tr> 
                <td class='my_dt_label'>姓名:</td> 
                <td class='my_dt_field'><input type='text' id='select_name' class='my_input' size='30' /></td> 
                <td class='my_dt_label'>电话号码:</td> 
                <td class='my_dt_field'><input type='text' id='select_tel' class='my_input' size='30' /></td> 
                <td class='my_dt_label'>地址:</td> 
                <td class='my_dt_field'><input type='text' id='select_address' class='my_input' size='30' /></td> 
                <td class='my_dt_label'>部门:</td> 
                <td class='my_dt_field'><select id="select_department" class="easyui-combobox"  style="height:28px;width:200px;" editable=false ><{$select_option_department}></select></td>
                <td style="padding: 0px 0px 0px 5px;"> 
                    <a href='#' class='easyui-linkbutton'   iconCls='icon-select' style="height:29px;width:64px;" onclick='Select()'>查询</a> 
                </td>
            </tr> 
        </table> 
        <table> 
            <tr> 
                <td style="width:65px;">创建时间:</td><td><input id="switch_date_entered" class="easyui-switchbutton"  style="width:60px;height:26px" onText="部分" offText="全部"  /> </td> 
                <td style="padding: 0px 0px 0px 2px;"> <input id="start_date_entered" value="<{$start_date}>" placeholder="开始日期" class="my_input laydate-icon" style="height:29px;"  onclick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})" readonly ></input></td> 
                <td><span class="input-group-addon" style="height:28px;">至</span></td> 
                <td><input id="stop_date_entered" value="<{$stop_date}>" placeholder="结束日期" class="my_input laydate-icon" style="height:29px;" onclick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})"  readonly  ></input>    </td> 
                <td style="width:10px;"> </td>
                <td style="width:65px;">修改时间:</td><td><input id="switch_date_modified" class="easyui-switchbutton" style="width:60px;height:26px" onText="部分" offText="全部"  /></td> 
                <td  style="padding: 0px 0px 0px 2px;"> <input id="start_date_modified" value="<{$start_date}>" placeholder="开始日期" class="my_input laydate-icon" style="height:29px;" onclick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})" readonly ></input></td> 
                <td ><span class="input-group-addon" style="height:28px;">至</span></td> 
                <td ><input id="stop_date_modified" value="<{$stop_date}>" placeholder="结束日期" class="my_input laydate-icon" style="height:29px;" onclick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})"  readonly ></input>    </td> 
                
            </tr>
        </table> 
    </div>
    <table id='grid' class='easyui-datagrid' style='width:100%;height:470px'  
            title='列表' iconCls='icon-table' pagination='true' rownumbers='true' fitColumns='true' singleSelect='true' toolbar='#toolbar' >  
        <thead>  
            <tr>  
                <!-- <th field='select' width='30' align='center'></th>-->  
                <th field='id' width='10' hidden='true'>编号</th>      
                <th field='name' width='20'align='center'>姓名</th>   
                <th field='office_tel' width='22'align='center'>电话号码</th>   
                <th field='mobile_tel' width='22'align='center'>移动电话</th>   
                <th field='other_tel' width='22'align='center'>其它电话</th>   
                <th field='sex' width='10'align='center'>性别</th>   
                <th field='department' width='40'align='center'>部门</th>  
                <th field='position' width='15'align='center'>职位</th> 
                <th field='description' width='20' align='center'   >区域</th>
                <th field='address' width='40' align='center'>地址</th>  
                <th field='date_entered' width='30' align='center'>创建时间</th>  
                <th field='created_user_name' width='20' align='center'>创建人</th> 
            </tr>  
        </thead>  
    </table> 
    <div id='toolbar' style='display: flex;align-items:Center; height:35px;' > <!--
        <a href='#' class='easyui-linkbutton' iconCls='icon-select-file' plain='true' onclick='Detail()' <{$Detail_disabled}> >详细</a>
        <a href='#' class='easyui-linkbutton' iconCls='icon-add' plain='true' onclick='Add()'   <{$Add_disabled}>  >新增</a>  
        <a href='#' class='easyui-linkbutton' iconCls='icon-edit' plain='true' onclick='Edit()' <{$Edit_disabled}>  >编辑</a>   
        <a href='#' class='easyui-linkbutton' iconCls='icon-remove' plain='true' onclick='Delete()' <{$Delete_disabled}> >删除</a>  
        <a href='#' class='easyui-linkbutton' iconCls='icon-excel' plain='true' onclick='ToExcel()' <{$ToExcel_disabled}> >导出</a> 
        <div class="btn-separator"></div>
        <a href='#' class='easyui-linkbutton' iconCls='icon-data-import' plain='true' onclick='SaveToXml()'  >一键生成通讯录</a> 
        <div class="btn-separator"></div>
        <a href='#' class='easyui-linkbutton' iconCls='icon-refresh' plain='true' onclick='Refresh()'>刷新</a> 
        <a href='#' class='easyui-linkbutton'  iconCls='icon-cancel' plain='true' onclick='parent.TabClose();'>关闭</a>
    </div> 

javascript部分

最简单的数据绑定方法

    //获取 查询 条件 参数
    function SelectParameter(){
        var switch_date_entered= $("#switch_date_entered").switchbutton("options").checked;//alert(status);  //是否启动 日期查询条件
        var switch_date_modified= $("#switch_date_modified").switchbutton("options").checked;  //alert(switch_install_date);

        var start_date_entered=$('#start_date_entered').val();   //创建时间        
        var stop_date_entered=$('#stop_date_entered').val(); 
        var start_date_modified=$('#start_date_modified').val(); //修改时间          
        var stop_date_modified=$('#stop_date_modified').val();

        var name=$('#select_name').val();     
        var tel=$('#select_tel').val();     
        var address=$('#select_address').val();     
        var created_user_name=$('#select_created_user_name').val();    

        var department=$('#select_department').combobox('getValue');//部门
         
        var query={ 'switch_date_entered':switch_date_entered,'start_date_entered':start_date_entered,'stop_date_entered':stop_date_entered 
                    ,'switch_date_modified':switch_date_modified,'start_date_modified':start_date_modified,'stop_date_modified':stop_date_modified 
                    ,'name':name,'tel':tel,'address':address,'created_user_name':created_user_name
                    ,'department':department  };    
                    
        return query;
    }
    //查询
    function Select(){   
        var query=SelectParameter(); //alert(query);//获取 查询 条件 参数 
        
        var url='Api-index.php?module=<{$module_name}>&action=Api_GridView_Select<{$get_current_user}>' ;   //alert(url);
        $('#grid').datagrid('options').url=url ; 
        $('#grid').datagrid('options').queryParams=query;   
        $('#grid').datagrid('reload');       
    }   

php部分

$table_name='address_book';  
    $arr_result = array(); //返回值  
    $where='';//查询条件  
    
    //启动 哪个日期条件    
    if($_POST['switch_date_entered']=='true'  ){ //WriteLog($_POST['switch_date_entered']
        $where=" and date_entered >='{$_POST['start_date_entered']}' and date_entered <='{$_POST['stop_date_entered']}' ";  
    }else if ($_POST['switch_date_modified']=='true'  ) {
        $where=" and date_modified >='{$_POST['start_date_modified']}' and date_modified <='{$_POST['stop_date_modified']}' ";  
    }
 
    //其它条件  
    if($_POST['name']!=''){   
        $where .=" and name like '%{$_POST['name']}%' ";  
    }  
    if($_POST['address']!=''){  
        $where .=" and address like '%{$_POST['address']}%' "; 
    }  
    if($_POST['tel']!=''){  //mobile_tel office_tel home_tel other_tel  
        $where .=" and ( mobile_tel ='{$_POST['tel']}' or office_tel = '{$_POST['tel']}' or home_tel = '{$_POST['tel']}' or other_tel = '{$_POST['tel']}' ) ";  
    }  
    if($_POST['created_user_name']!=''){  
        $where .=" and created_user_name = '{$_POST['created_user_name']}' "; 
    }  
    if($_POST['department']!='' && $_POST['department']!='0'){  
        $department=$_POST['department']; 
        $where .=" and department = '{$department}' ";  
    } 
    
    $where= " deleted=0 " . $where;
    $order_by=" order by department desc ";  //date_entered

    //导出 或 打印
    if($_GET['target']=="ToExcel" || $_GET['target']=="Print" ){
        $arr_result['where'] = $where;      //将条件 传出
        $arr_result['order_by'] = $order_by;      //将条件 传出
        //WriteLog($where);  
        //WriteLog($order_by);  
        echo json_encode($arr_result);
        exit(0);
    }

    //分页  
    $page = isset($_POST['page']) ? intval($_POST['page']) : 1;   
    $rows = isset($_POST['rows']) ? intval($_POST['rows']) : 10;   
    $offset = ($page-1)* $rows;   
    
    $sql ="SELECT COUNT(id) AS total FROM {$table_name} where " . $where ;   
    //WriteLog($sql);  
    $arr_result['total'] =$db->query_count($sql);//行数  
    //WriteLog($result['total'].'-----' );  
    
    //结果集      
    $items = array();  
    $sql = "select * from {$table_name} where ".$where . $order_by ." limit $offset,$rows ";   
    //WriteLog($sql);  
     
    $result_rows=$db->query($sql);  
    while($row=$db->fetch_array($result_rows))  
    {  
        //$select_title='选择';//iconv('GB2312','UTF-8','选择');  
        //$row['select']="<a href='#'  style='text-decoration:none;' onclick='javascript:Show_Contact(\'". $row['id'] . "\');> " . $select_title . ' </a>';  
        array_push($items, $row);   
    }  

    $arr_result['rows'] = $items;       

    //WriteLog(json_encode($arr_result));  
    echo json_encode($arr_result);   

 

标签:name,easyui,绑定,modified,datagrid,var,switch,date,entered
From: https://www.cnblogs.com/hailexuexi/p/17999539

相关文章

  • wpf 数据绑定 INotifyPropertyChanged封装
    BindableBase.cspublicabstractclassBindableBase:INotifyPropertyChanged{publiceventPropertyChangedEventHandlerPropertyChanged;//调用方法:publicstringName{get=>name;set{SetProperty<string>(refname,value);}}......
  • c# ComboBox控件的常用一些属性和用法、事件及数据绑定方法
    一、常用属性和用法1、Text:获取或设置与此控件关联的文本。//设置默认值this.comboBox1.Text="请选择内容";//orcomboBox1.Items.Add("请选择内容");comboBox1.SelectedIndex=0;2、SelectedIndex:获取或设置指定当前选定项的索引。(设置新索引会SelectedIndexChanged......
  • wpf 数据绑定 执行流程
    数据绑定SimpleBinding\MainWindow.xaml<Windowx:Class="SimpleBinding.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"......
  • 通过Demo学WPF—数据绑定(一)✨
    前言✨想学习WPF,但是看视频教程觉得太耗时间,直接看文档又觉得似懂非懂,因此想通过看Demo代码+文档的方式进行学习。准备✨微软官方其实提供了WPF的一些Demo,地址为:microsoft/WPF-Samples:RepositoryforWPFrelatedsamples(github.com)将其克隆到本地,有很多的Demo代码:新建......
  • 3.数据绑定
    什么是MVVM?看一张图。View负责数据的输入与输出;ViewModel负责业务逻辑;Model则表示程序中具体要处理的数据。所以,Model将作为属性存在于ViewModel中,而Model最终是要显示在Ul界面(View)上的,怎么办呢?将ViewModel赋值给View的DataContext(数据上下文)属性,View就可以引用ViewModel中的那......
  • 动态绑定组件时 v-model:value 的使用
    //requireimportcomponentsconstfiles=require.context("@/components/control",true,/\index.vue$/);//console.log('files:',files.keys())//files:['./cascader/index.vue','./control/cascader/index.vue',......
  • Vue模板语法——数据绑定指令
    一、数据绑定指令v-text填充纯文本相比插值表达式更加简洁v-html填充HTML片段存在安全问题本网站内部数据可以使用,来自第三方的数据不可以用v-pre填充原始信息显示原始信息,跳过编译过程(分析编译过程)二、v-text填充纯文本v-text用法在需填充的标签中添加......
  • Vue模板语法——v-model 双向数据绑定
    双向数据绑定单向数据绑定是什么?数据模型(Module)和视图(View)之间的单向绑定。需要我们先写好模板,然后把模板和数据(可能来自后台)整合到一起形成HTML代码,然后把这段HTML代码插入到文档流里面。简单的来说就是DOM操作html元素。单向数据绑定的缺点:一旦HTML代码生成好后,就没有办......
  • Vue模板语法——v-on 事件绑定
    一、v-on事件绑定v-on指令用于绑定事件v-on用法转=>最底层的技术渣--Vue基础语法之v-on转=>一瓶怡宝矿泉水--v-on指令直接绑定事件:注意:绑定的事件是对应的方法不是定义在data里面,而是定义在vue实例的methods里绑定的函数可直接绑定函数名——fun,也可以直接调用......
  • C# 动态对象 灵活数据绑定
    //当不想创建类,或者这个类的字段是动态变化的(不确定有多少字段)//可以考虑动态对象,方便好用//此处示例是用DataGrid用的数据源动态绑定ObservableCollection<dynamic>dataSource=newObservableCollection<dynamic>();//创建动态对象dynamicdynamicObject=newExpandoObject(......