4.25列表列宽设置

(1)按照比例设置,在宽度铺满情况下,打开详细属性设置,在others内添加属性columnWidths,如下为当列表为7列时配置:

  others: {
    ...
    columnWidths: {
      0: 3,
      1: 8,
      2: 4,
      3: 4,
      4: 4,
      5: 4,
      6: 4
    },
   ...
  }

(2)按照像素设置,在宽度不铺满情况下,打开详细属性设置,在others内添加属性columnWidths,如下为当列表为7列时配置:

  others: {
    ...
    columnWidths: {
      0: 110,
      1: 100,
      2: 80,
      3: 80,
      4: 80,
      5: 80,
      6: 80
    },
   ...
  }