• EasyUI的datagrid有值但是显示不出来


    $("#goodsList").datagrid({
      url: "../Ajax/GoodsAjax.ashx",
      queryParams:
      {
      cmd:  'getAllGd',

      strWhere: strWhere,
      id:i
      },
      fitColumns: true, 
      pagination: true,  
      rownumbers: true, 
      singleSelect: false, 
      striped: true,  
      checkOnSelect: true,
    // onDblClickRow: clickRowGd, 
      pageSize: 50, 
      pageList: [10, 50, 100, 1000, 5000], 
      columns: [[
      {
       field: "row",
       checkbox: true,
      },
      {
       field: "g_Code",
       title: "编码",
       align: "center",
        "90"
     },
     {
       field: "g_Name",
       title: "名称",
       align: "center",
        "250"
     },
     {
       field: "g_SellPrice ",
       title: "零售价",
       align: "center",
        "100"
     },
     {
       field: "g_Memo",
       title: "备注",
       align: "center",
        "250"
     }
     ]],
    });

    问题:前面几个columns中‘编码’、‘名称’都正常显示,‘零售价’不显示,可是调试出的‘零售价’有值,也就是从后台获取到数据了,但为什么不显示?

    解决:困扰了好久,原来是这 field出了问题,看这里: field: "g_SellPrice ",    g_SellPrice后面多了一个空格

  • 相关阅读:
    Path Sum
    Linked List Cycle II
    Linked List Cycle
    Single Number i and ii
    Binary Tree Preorder Traversal and Binary Tree Postorder Traversal
    Max Points on a Line
    Evaluate Reverse Polish Notation
    【leetcode】98 验证二叉搜索树
    【vivo2020春招】 02 数位之积
    【vivo2020春招】03 vivo智能手机产能
  • 原文地址:https://www.cnblogs.com/weimingxin/p/6814605.html
Copyright © 2020-2023  润新知