Skip to content

Instantly share code, notes, and snippets.

@Hugobox
Last active December 22, 2017 16:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hugobox/3483710e3587e9c85c8bd9f04f745ce3 to your computer and use it in GitHub Desktop.
Save Hugobox/3483710e3587e9c85c8bd9f04f745ce3 to your computer and use it in GitHub Desktop.
Collapsible Dashboard UI cards v2

Adding this flow will make all the cards (groups) in your Dashboard tab collapsible by clicking on its title. Now preserves the card's width.

[
{
"id": "6aa52fa6.62dcf",
"type": "ui_template",
"z": "3dc8ae0.6cb8152",
"group": "115a1f02.ba9291",
"name": "Collapsible Card",
"order": 8,
"width": 0,
"height": 0,
"format": "<script>\n$(document).on('ready', function(){\n $('div.nr-dashboard-cardpanel > p:first-child').addClass('cardTitle');\n $('div.nr-dashboard-cardcontainer').addClass('card');\n $( '.cardTitle' ).click(function() {\n var newwidth = $(this).css(\"width\");\n $(this).css(\"width\",newwidth);\n $(this).next('.card').slideToggle(600);\n setTimeout(function() {$(window).trigger('resize');}, 700);\n });\n})\n</script>",
"storeOutMessages": true,
"fwdInMessages": true,
"templateScope": "local",
"x": 260,
"y": 2440,
"wires": [
[]
]
},
{
"id": "115a1f02.ba9291",
"type": "ui_group",
"z": "",
"name": "Sliders",
"tab": "52aaa596.768b7c",
"order": 2,
"disp": true,
"width": "6"
},
{
"id": "52aaa596.768b7c",
"type": "ui_tab",
"z": "",
"name": "Angular UI templates",
"icon": "dashboard"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment