Submitted by melinda on Thu, 07/22/2021 - 12:04
The issue : If a column value equals specific value then count powerapps string text
1. Add a label
Submitted by melinda on Wed, 07/21/2021 - 14:36
The issue: DataCard border doesn't show up
So there was some documentation advising App developers to change the display mode of the field to "Edit" or "Disabled" to display borders in their app in view screens.
The results were not what I wanted to display.
DisplayMode.Edit
Submitted by melinda on Fri, 07/02/2021 - 11:58
*****UPDATE*****************
OK so Microsoft launched the "StartScreen" in PowerAPPs. The below instructions do not work anymore.
Click here for updated instructions.
There's some documentation on this that has the wrong syntax using a "?" but the correct operator is "&". At least in my system....
The correct syntax for the url is:
Submitted by melinda on Fri, 05/14/2021 - 00:43
Add this to your custom css page. The below is what I used to hide a sidebar region on NODE 508. Replace the 508 with your NodeID and whatever you would like to change in the additional selectors.
.page-node-508 #right-sidebar{
display:none;
}
You can use this css to do any kind of theming on a specific node. :)
Another example is
Submitted by melinda on Mon, 05/03/2021 - 11:48
Orphan Files.
Delete them all out of your quiz's results list within the node!
Submitted by melinda on Mon, 05/03/2021 - 08:48
Hello all.
I need to add a "%" to the suffix to a table with aggregation. It's a great module but there isn't a place to put prefixes or suffixes which my clients wanted the "%" at the end which is not un-reasonable.
I did it with css.
Find the css selector and copy it.
Here's my css code that places the sufix.Change the selector to match your selector.
Submitted by melinda on Mon, 03/29/2021 - 23:24
The problem:
Client wanted to display the percentage score of four quizzes based on the max score possible for all four quizzes combined. Opigno Course actually takes the percentage scores of each quiz result and averages them. This client did not want that.
Soooooo here's what I did.
The view: (My Quizzes/Lessons are renamed "Core Characteristics")

Submitted by melinda on Mon, 03/29/2021 - 22:53
This is just one possible reason but it's what took me forever to figure out.
I set up a bunch of blocks to display serveral quiz results, some of the blocks were not showing up on my test users results page.
Submitted by melinda on Tue, 02/23/2021 - 23:39
I added an if statement for good measure and an example how you could use the link/ URL print.
Submitted by melinda on Tue, 10/13/2020 - 17:37
Places to add your files. Four things to do.. not including css
Create a region template.
My template name: platon--site-content--right-sidebar.tpl.php
Pu it in the theme's templates folder.
My code for a plain side bar
<?php
$settings = variable_get('theme_platon_settings');
if(!empty($settings['palette'])) {
$backgroundColor = $settings['palette']['dark_blue'];
}
?>
Pages