zoukankan      html  css  js  c++  java
  • easyUI 绑定数据

        

    $("#tabProducts").datagrid({
    url: "/AsProduct/GetAllProducts",
    isField: "RoleId",
    pagination: true,//显示分页
    pageSize: 20,//分页大小
    pageList: [20, 30, 40, 50],//每页的个数
    fitColumns: true,
    height: $(window).height() - 100,
    queryParams: queryParams,
    title: "产品列表",
    columns: [[ //每个列具体内容
    {
    field: 'id',
    title: '产品ID',
    100,
    hidden: true
    },
    {
    field: 'productName', title: '产品名称', 100, align: "left", formatter: function (value, row, index) {
    var ret = value;
    if (value.length <= 18)
    ret = value;
    else
    ret = value.substring(0, 18) + "...";
    return "<span title=" + value + ">" + ret + "</span>";
    }
    },
    {
    field: 'JobName', title: '对应职位', 100, align: "left", formatter: function (value, row, index) {
    var ret = value;
    if (value.length <= 18)
    ret = value;
    else
    ret = value.substring(0, 18) + "...";
    return "<span title=" + value + ">" + ret + "</span>";
    }
    },
    { field: 'productDetail', title: '产品描述', 100, align: "center" },
    { field: 'productLogo', title: '产品logo(url地址)', 100, align: "center" },
    { field: 'price', title: '单价(元)', 100, align: "center" },

    { field: 'num', title: '库存 (件)', 100, align: "center" },
    { field: 'createtime', title: '上架时间', 100, align: "center" },
    { field: 'packType', title: '包装(规格)', 10, align: "center", hidden: true },

    ]], toolbar: toolbar,
    });
    }

  • 相关阅读:
    Apache服务器的简单配置与安全策略
    Linux下的ICMP反弹后门:PRISM
    项目年度任务失败总结
    SpringBoot下配置Druid
    ftm国际化解决方案
    SpringBoot自动装配源码解析
    log4j到log4j2升级迁移方案
    Linux常用命令记录
    MySQL安装后无法用root用户访问的问题
    html实体命名
  • 原文地址:https://www.cnblogs.com/liuzheng0612/p/10941902.html
Copyright © 2011-2022 走看看