Klipfolio. The KPI Dashboard - Evolved
The KPI Dashboard – Evolved
1-877-233-6149
Contact Us

Changing the default order of columns in an alert pop-up

Problem:

You want to specify which columns to display in the alert pop-ups.

Solution:

Using the CSS property alertcol, you can specify columns for alert pop-ups. You may display columns you don't show in the Klip, or vice versa.


/* Display in Klip only */
column1 {
    itemcol: 1;
    alertcol: 0;
}
/* Display in Klip and alert */
column2 {
    itemcol: 2;
    alertcol: 2;
}
/* Display in alert only */
column3 {
    alertcol: 1;
}

Using the above code, here is what the Klip and its alert look like. Note the order of the columns:
The Klip:
http://www.klipfolio.com/images/content/cookbook/alertcol-1.gif
And its alert pop-up:
http://www.klipfolio.com/images/content/cookbook/alertcol-2.gif

Note that the default value for alertcol is 0. This means that setting alertcol: 0 on all columns is the same thing as not setting alertcol on any of them at all.

Leave a Comment

To leave a comment, you must sign in or register (it's free).

   
Comment Type:
Title:
Comment: