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

Easyui的datagrid中的if判断问题

时间:2019-05-10 23:18:07      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:value   for   function   问题   enter   mat   orm   string   strong   

初学easyui,在columns里面有这么一列

{
field : 'alert',
title : '报警类型',
width : 150,
rowspan : 2,
align : 'center'
}

想判断当datagrid里面的值为"1"(String类型)的时候列表显示为A,值为"2"的时候显示B,这个该怎么写?

解答:

{
 
        field : 'alert',
        title : '报警类型',
        width : 150,
        rowspan : 2,
        align : 'center',
                formatter : function(value,row,index){
                    if(value=='1'){return 'A'}  
                    else if(value=='2'){
                    return 'B'
                    }        
                  } 
    }

Easyui的datagrid中的if判断问题

标签:value   for   function   问题   enter   mat   orm   string   strong   

原文地址:https://www.cnblogs.com/xianyao/p/10847031.html

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