Hi,
I have a dashboard panel showing data in a tabular structure. Here i just wanted a drilldown into a default flashtimeline on click of table's row(any value of a table). Here is the advanced xml :
< module name="HiddenSearch" layoutPanel="panel_row4_col1" group="Recommendation for ErrorCodes" autoRun="True">
< param name="search">host="sharepoint" | rex field=msg "\sMore\sinformation:\s(?<ErrorIdentifierField>[\dxA-F]+)" | eventstats count by ErrorIdentifierField | sort -count | table ErrorIdentifierField count < /param>
< module name="SimpleResultsTable">
< param name="entityName">results < /param>
< param name="dataOverlayMode">heatmap < /param>
< param name="drilldown">all < /param>
< module name="ConvertToDrilldownSearch">
< module name="ViewRedirector">
< param name="viewTarget">flashtimeline < /param>
< param name="popup">True < /param>
< /module>
< /module>
< /module>
< module name="ViewRedirectorLink">
< param name="viewTarget">flashtimeline < /param>
< /module>
< /module>
Here the problem is when i click on the table's row/any of the value its not drilling down to a default flashtimeline but shows same tabular structure. Now in this tabular structure if i click agian then it will show the table but containing only clicked(the value which clicked) value.Here i wanted to show the default flashtimeline for the clicked values. So pls help with the advance xml for this.
Thank you