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,
    });
    }

  • 相关阅读:
    SIEM思考
    PowerDesigner15在生成SQL时报错Generation aborted due to errors detected during the verification of the mod
    Mongo驱动
    RsysLog
    vi全局替换方法
    RPM
    hdu1195 Open the Lock (DFS)
    调制:调幅(AM)与调频(FM)
    调制:调幅(AM)与调频(FM)
    追本溯源 —— 诗词、名言
  • 原文地址:https://www.cnblogs.com/liuzheng0612/p/10941902.html
Copyright © 2011-2022 走看看