I'm tinkering with my status bar. Is there a way to determine whether it is currently being displayed in the left pane, right pane or in a single pane lister?
I'd like to display something only at the very right end of the status bar, ie. in a single pane lister or otherwise in the right status bar.
(Using separate definitions for left/right panes doesn't help - and it seems that for single pane listers, the definition for the left pane is used.)
We've added this to the evaluator for the next beta (13.6.2). The value "dual" will be set to 0 for a single display, 1 for left/top and 2 for right/bottom.
Great, works perfectly in 13.6.2: By using the evaluator {=(dual == 1) ? "" : "hello" =}
I can show something only in single or right/bottom.
Thank you!