Forums
Script to change the SVG icon size in datagrid - Printable Version

+- Forums (https://bdn.bdb.ai)
+-- Forum: BDB Knowledge Base (https://bdn.bdb.ai/forumdisplay.php?fid=13)
+--- Forum: BDB Dashboards Designer (https://bdn.bdb.ai/forumdisplay.php?fid=43)
+---- Forum: BDB Designer Q & A (https://bdn.bdb.ai/forumdisplay.php?fid=16)
+---- Thread: Script to change the SVG icon size in datagrid (/showthread.php?tid=618)



Script to change the SVG icon size in datagrid - Asma M - 12-23-2022

"AlertColumn.prototype.getCustomAlert = function (showData, color, arrowPosition, customIcon) {
var text = '<div style="" display:inline-block;text-decoration:inherit;vertical-align:top;margin-top:3px;"">' + showData + '</div>';
var alertImage = '<div style=""width:25px; height:17px;margin-left:5px;margin-right:12px; display:inline-block;""><span class=""'+customIcon+'"" style=""color:' + color + ';font-size:10px;""></span></div>';
if (this.m_alertposition == ""left""){
return alertImage + text;
} else {
return text + alertImage;
}
};"