ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: User/Group table - Data Security Thanks DRay. I actually did see that. but it's a bit over my head. I appreciate the input though. Re: User/Group table - Data Security Hey DRay! Yes... so I'd like to get a table of what we see when we look at Data Security. I envision one column for "Restricted Members" and another for "Values." So, for the attached shot, there would be rows for the 7 Restricted Members and the associated 50 Values etc. Re: User/Group table - Data Security To be more clear, I would like to get everything into an Excel file. User/Group table - Data Security Is there a way to grab a table of all the users per groups that have been set-up in Data Security? Re: Change Widget Description Thank you JeremyFriedel! And also for your help, DRay! Re: Change Widget Description Hey DRay how would I incorporate the widget id-specific code within my code? And should it be placed at the dashboard level or widget level? I'd like it to work for all widgets, but it does nothing when I use it (as it is) at the dashboard level. Re: Change Widget Description DRay I'm not specifying a widget ID. The code is actually as shown above; I hadn't made any changes. Re: Change Widget Description Hey, DRay! Good to see you again as well! Wondering if you might know why this would be... I'm actually happy with the code, but when a user (viewer) looks at the dashboard, the Description title changes don't seem to be working. Yet, it looks fine on my end. Re: Change Widget Description FWIW, I was able to manipulate the following code. The only issue is that it changes the description for all widgets + dashboard when placed in a widget's editor. It does nothing when placed in the dashboard's editor. widget.on('ready', function(w, e) { var color = '#209DBB'; var fontSize = '20px'; var fontWeight = 'bold'; // var backgroundColor = '#0C3D5E'; // Example background color var $description = $('.sis-scope .transput-caption'); var newCSS = { 'color': color, 'font-size': fontSize, 'font-weight': fontWeight, 'background-color': backgroundColor // Add background color }; $description.css(newCSS); }); Change Widget Description Apologies if I've missed it, but has anyone written js for changing the Description section of a widget? It's the same section of a widget where the edit pencil appears. I would like to change the font color, size, ... Solved