Script to hide header from a 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 hide header from a datagrid (/showthread.php?tid=635) |
Script to hide header from a datagrid - Anubhav - 12-24-2022 sdk.setAfterRenderCallBack('datagrid508', function() { var temp = sdk.getWidget('datagrid508'); $("#" + temp.m_componentid).find('.datagrid-header-row').css({"visibility": "collapse" }); }); |