Hi MN, You can make it work by doing the following change in your code.I have run it for a boolean field named checkemail and it worked. function displayIconTooltip(rowData, userLCID) { var str = JSON.parse(rowData); console.log(str); var coldata = str.checkemail_Value; var imgName = ""; var tooltip = ""; if(coldata ){ imgName='new_img';//Your Image Icon tooltip ='Demo Value'; } else { imgName='new_img1';//Your Image Icon tooltip ='Demo Value1'; } var resultarray = [imgName, tooltip]; console.log(resultarray ); return resultarray; } Please find the screenshot below: -Shaminder
↧