Hide & show groups - 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: Hide & show groups (/showthread.php?tid=390) |
Hide & show groups - mohd.gulam - 12-22-2022 Hide group:This sdk method is used to hide the groups when it is clicked on any label & group includes(labels,components,filters etc) * Method: sdk.hideGroups[("group_1")] Argument:group name as string(used to hide single group) * Method: sdk.hidegroups[("group_1","group_2")] Argument:Array of groups as string(used to hide multiple groups) Show group:This sdk method is used to show the groups when it is clicked on any label & group includes(labels,components,filters etc).. * Method: sdk.showGroups[("group_1")] Argument:group name as string(used to show single group) * Method: sdk.showgroups[("group_1","group_2")] Argument:Array of groups as string(used to show multiple groups) |