Hello,
Can anyone help me understand whether it is possible to change the default icon of the widget group from a WAB Developer Edition template? By default, the group widget icon looks like a folder with three dots in it is used when grouping multiple widgets into a single named group (see attached image). Thank you!!
Solved! Go to Solution.
Francesco,
Ahh. I forgot they changed that. You can add a unique icon for each group by adding an icon property to the group object in your main config.json. I added line 4:
"groups": [
{
"label": "New Group",
"icon": "jimu.js/images/group_icon2.png",
"widgets": [
{
If you made a change it would affect all group icons not just one.
Just replace or edit the image:
[install dir]\server\apps\[app#]\jimu.js\images\group_icon.png
Thanks! I see, that's what I was afraid of. Are there workarounds for using a different group icon for each custom group I decide to create?
Francesco,
Ahh. I forgot they changed that. You can add a unique icon for each group by adding an icon property to the group object in your main config.json. I added line 4:
"groups": [
{
"label": "New Group",
"icon": "jimu.js/images/group_icon2.png",
"widgets": [
{
CC,
That is a tough one. The Launchpad theme assigns the background colors for those buttons at random.
aw i see, thanks for the reply.