1. 程式人生 > >bootstraptable設置列默認值

bootstraptable設置列默認值

editable function 字段 設置 中文 頁面 dex 頁面提交 style

示例:見代碼一,通過formatter可以控制顯示字段的值,假設渲染bootstraptable時該值未被渲染,同時頁面提交時該值也未被修改,在後臺該值為null,而不是formatter中設置的‘‘,要想達到設置默認值效果,需要加上row.name = ‘‘; 見代碼二。

代碼一:

{
    title: "中文名稱",
    field: "name",
    width: "80",
    editable: {
    type: ‘text‘
    },
    formatter: function (value, row, index) {
      if (value)
          return value;
      else
          return ‘‘;
    }
}

代碼二:

{
    title: "中文名稱",
    field: "name",
    width: "80",
    editable: {
    type: ‘text‘
    },
    formatter: function (value, row, index) {
      if (value) {
          return value;
      } else {
         row.name = ‘‘;  
      return ‘‘;
     } } }

bootstraptable設置列默認值