You want to specify which columns to display in the alert pop-ups.
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:
And its alert pop-up:

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.