【EasyUI篇】ComboGrid数据表格下拉框组件

微信公众号:程序yuan
关注可获得更多干货哦!问题或建议,请公众号留言;

------------------------------------------------

关注小编微信公众号获取更多资源

------------------------------------------------

查看--> 全套EasyUI示例目录

31.ComboGrid数据表格下拉框组件

 

 

JSP文件

<%--
  Created by IntelliJ IDEA.
  User: ooyhao
  Date: 2018/7/29 0029
  Time: 9:21
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Tree</title>
    <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/easyui/themes/default/easyui.css">
    <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/easyui/themes/icon.css">
    <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/easyui/themes/color.css">
    <script type="text/javascript" src="${pageContext.request.contextPath}/easyui/jquery.min.js"></script>
    <script type="text/javascript" src="${pageContext.request.contextPath}/easyui/jquery.easyui.min.js"></script>
    <script type="text/javascript" src="${pageContext.request.contextPath}/easyui/locale/easyui-lang-zh_CN.js"></script>
    <script type="text/javascript" src="${pageContext.request.contextPath}/js/ComboGrid.js"></script>
    <style rel="stylesheet" type="text/css">
    </style>
    <script>

    </script>
</head>
<body style="padding: 100px;">
<%--class 加载方式--%>
<%--<select id="box" class="easyui-combogrid" name="dept"
        style="width:250px;"
        data-options="
            panelWidth:500,
            value:'请选择一个值',
            idField:'id',
            textField:'user',
            url:'http://localhost:8081/easyui/findUser.action',
            columns:[[
                {field:'id',title:'id',width:120},
                {field:'user',title:'帐号',width:120},
                {field:'email',title:'邮箱',width:120},
                {field:'date',title:'创建时间',width:150},
            ]]
"></select>--%>


<input id="box" name="user" value="请选择一个用户">
</body>
</html>

JS文件

$(function () {

    $('#box').combogrid({
        panelWidth : 600,
        idField : 'id',
        textField : 'user',
        url : 'http://localhost:8081/easyui/findUser.action',
        columns : [[
            {
                field : 'id',
                title : '编号',
                width : 120,
            },
            {
                field : 'user',
                title : '帐号',
                width : 120,
            },
            {
                field : 'email',
                title : '邮箱',
                width : 120,
            },
            {
                field : 'date',
                title : '创建时间',
                width : 120,
            },
        ]]
    });
});

效果图

------------------------------------------------

关注小编微信公众号获取更多资源

------------------------------------------------

猜你喜欢

转载自blog.csdn.net/ooyhao/article/details/82889516