码迷,mamicode.com
首页 > 其他好文 > 详细

bootstraptable设置列默认值

时间:2019-01-18 15:37:09      阅读:542      评论:0      收藏:0      [点我收藏+]

标签:func   通过   else   class   code   title   div   editable   而不是   

示例:见代码一,通过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设置列默认值

标签:func   通过   else   class   code   title   div   editable   而不是   

原文地址:https://www.cnblogs.com/wanbao/p/10287813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!