I upgraded to 4.2 last week. Ever since the upgrade, my dashboard has been messed up a bit. Particularly, there is no longer a carriage return or where there once was.
For example, I had a "SingleValue" button and, below it, a "View Results" link. But ever since 4.2, the "View Results" link now appears to the right of the SingleValue button.
Similarly, where I once had several SingleValue buttons stacked on top of one another, they're now staggered next to each other.
Did something change that I missed?
Here's a snippet of my code, pretty straightforward:
<module name="HiddenSavedSearch" layoutPanel="panel_row3_col2_grp1" autoRun="True">
<param name="savedSearch">Check Echk</param>
<param name="useHistory">Auto</param>
<module name="HiddenPostProcess">
<param name="search">search host="xyz" status=Failed | stats count | eval yesno=if(count==0, "Active", "Backup") | rangemap field=count severe=1-2 default=low </param>
<module name="SingleValue">
<param name="field">yesno</param>
<param name="classField">range</param>
<param name="beforeLabel">Ethernet:</param>
</module>
<module name="ViewRedirectorLink">
<param name="viewTarget">flashtimeline</param>
<param name="label">View results</param>
</module>
</module>
Any suggestions has to how I can get that "ViewResults" to appear below the SingleValue once again would be appreciated.
Thanks!
... View more