melinda's blog

Count If SharePoint List Column value equals string value in a label for your PowerApps in MS

The issue : If a column value equals specific value then count powerapps string text

 

1. Add a label

Microsoft PowerApps Borders around fields in the "View" Screen Print Screen Layouts in PowerApps Data Cards

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

External Link to PowerApps Screen - URL for email bodies.

*****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:

Hide Region on specific Node or Page Drupal 7 using css

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 

Weird reason your user results will not show up in view Opigno Quiz Module Drupal 7

Orphan Files.

Delete them all out of your quiz's results list within the node!

Add "%" suffix to drupal 7 aggregated table views (Table with aggregration Module)

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.

Using Drupal views to display overall percentage score for groups of quizzes- Math expression and Views Aggregation Plus (VAP) Opigno Quiz Module

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")

math1.PNG

Opigno Drupal 7 Quiz - Why can't user see their quiz lesson results?

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.

Drupal 7- add user ID UID to URL path and hard code it for Links

I added an if statement for good measure and an example how you could use the link/ URL print.

Add ing regions to Opigno

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

Subscribe to RSS - melinda's blog