I have been trying to get a search progress bar to appear on a large form that takes quite a while to load. I have tried inserting the JobProgressIndicator module in several places, including above and below the HiddenSearch module but to no avail. In other examples I have seen it nested within the HiddenFieldPicker module however the form I am editing does not contain this module. Below is the xml I am using, I have highlighted where I have again tried to action the JobProgressIndicator. Any help would be greatly appreciated as I am quite new to Splunk and xml.
module name="JobProgressIndicator" layoutpanel="panel_row2_col1_grp1">
module name="HiddenSearch" layoutPanel="panel_row3_col1_grp1" autoRun="True" group="KCI - 0">
Hi,
please try this way:
<module name="HiddenSearch" layoutPanel="panel_row2_col1_grp1" autoRun="True" group="KCI - 0">
<param name="search">...</param>
<module name="JobProgressIndicator">
<module name="EnablePreview">
<param name="enable">True</param>
<param name="display">False</param>
</module>
</module>
</module>
What are you using for showing this results? A SimpleResultsTable?
Regards,
Stefano
Hi,
please try this way:
<module name="HiddenSearch" layoutPanel="panel_row2_col1_grp1" autoRun="True" group="KCI - 0">
<param name="search">...</param>
<module name="JobProgressIndicator">
<module name="EnablePreview">
<param name="enable">True</param>
<param name="display">False</param>
</module>
</module>
</module>
What are you using for showing this results? A SimpleResultsTable?
Regards,
Stefano
Hi Stefano, this seems to have worked, many thanks 🙂