<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: dynamic menus not talking in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40189#M1908</link>
    <description>&lt;P&gt;Sorry!   I didn't notice the "$" that you're using in the regex itself.  Because $ is a reserved character for $foo$ replacement in almost all Sideview Utils params, whenever you want an actual honest-to-god dollar character you have to use two consecutive dollar chars.   So change that regex and you should be all good.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Aug 2012 23:27:53 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2012-08-21T23:27:53Z</dc:date>
    <item>
      <title>dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40173#M1892</link>
      <description>&lt;P&gt;I created a form with 2 drop down menus.  However it appears they aren't talking.  The second drop down should change it's values every time I select something from the first drop down menu.  However this isn't happening for some reason.  I don't see any indication that it's populating again with new search results.  Both the menus populate based on separate searches&lt;/P&gt;

&lt;P&gt;How do I get these menus to talk to one another?  I've looked at a lot of examples and I can't seem to find what the issue is.  &lt;/P&gt;

&lt;P&gt;Update:  I have tried 3 times to paste my code in here and the formatting is horrible.  Because of this, I put it on pastebin:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://pastebin.com/SsT5HcdP"&gt;http://pastebin.com/SsT5HcdP&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2012 21:56:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40173#M1892</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-20T21:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40174#M1893</link>
      <description>&lt;P&gt;searchWhenChanged should by True &lt;/P&gt;

&lt;P&gt;Without this, when you change your selection, the change isn't pushed downstream.&lt;/P&gt;

&lt;P&gt;However I think there's another problem - I would have expected $registry$ to appear in the search for the 2nd dropdown somewhere if the 1st dropdown drives the options in the 2nd dropdown. Without that relationship, they are independent anyway.&lt;/P&gt;

&lt;P&gt;What do you expect to see ?&lt;/P&gt;

&lt;P&gt;Update :&lt;/P&gt;

&lt;P&gt;This line in the 2nd search :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;param name="search"&amp;gt;sourcetype="EPPWEB" daysago=1 source="/opt/log/*/web_server/info.log" WAT | rex field=_raw "downloading .*/(?&amp;lt;filename&amp;gt;.+?)$" | fields filename | top filename
&amp;lt;/param&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Needs to refrence $registry$ in some way, otherwise the options it presents will be independent of the 1st search. Probably something like this - notice that we have to extract the registry values again, and then insert your intention '$registry' to limit the filenames returned.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;param name="search"&amp;gt;sourcetype="EPPWEB" daysago=1 source="/opt/log/*/web_server/info.log" WAT | rex field=_raw "downloading .*/(?&amp;lt;filename&amp;gt;.+?)$" | rex field=source "^/opt/log/(?&amp;lt;registry&amp;gt;[^/]+)/web_server/.*$" | $registry$ | fields filename | top filename
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Update2 :  Example :  ( All this is described in great detail in the UI Examples App - which is a fine place to learn this sort of stuff, plus a lot more)&lt;/P&gt;

&lt;P&gt;The missing piece of the puzzle is this in the 2nd SearchSelectLister :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;param name="applyOuterIntentionsToInternalSearch"&amp;gt;True&amp;lt;/param&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here's an example :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0"?&amp;gt;
&amp;lt;view template="dashboard.html"&amp;gt;
  &amp;lt;label&amp;gt;Example&amp;lt;/label&amp;gt;
  &amp;lt;module name="AccountBar" layoutPanel="appHeader"/&amp;gt;
  &amp;lt;module name="AppBar" layoutPanel="navigationHeader"/&amp;gt;
  &amp;lt;module name="SearchSelectLister" layoutPanel="mainSearchControls" group="Drilldowns"&amp;gt;
    &amp;lt;param name="label"&amp;gt;Sourcetype&amp;lt;/param&amp;gt;
    &amp;lt;param name="settingToCreate"&amp;gt;setting_sourcetype&amp;lt;/param&amp;gt;
    &amp;lt;param name="search"&amp;gt;index=_internal | stats count by sourcetype | fields - count | sort - sourcetype&amp;lt;/param&amp;gt;
    &amp;lt;param name="searchWhenChanged"&amp;gt;True&amp;lt;/param&amp;gt;
    &amp;lt;param name="selected"&amp;gt;splunkd&amp;lt;/param&amp;gt;
    &amp;lt;param name="staticFieldsToDisplay"&amp;gt;
      &amp;lt;list&amp;gt;
        &amp;lt;param name="label"&amp;gt;All&amp;lt;/param&amp;gt;
        &amp;lt;param name="value"&amp;gt;*&amp;lt;/param&amp;gt;
      &amp;lt;/list&amp;gt;
    &amp;lt;/param&amp;gt;
    &amp;lt;param name="searchFieldsToDisplay"&amp;gt;
      &amp;lt;list&amp;gt;
        &amp;lt;param name="label"&amp;gt;sourcetype&amp;lt;/param&amp;gt;
        &amp;lt;param name="value"&amp;gt;sourcetype&amp;lt;/param&amp;gt;
      &amp;lt;/list&amp;gt;
    &amp;lt;/param&amp;gt;
    &amp;lt;module name="ConvertToIntention"&amp;gt;
      &amp;lt;param name="settingToConvert"&amp;gt;setting_sourcetype&amp;lt;/param&amp;gt;
      &amp;lt;param name="intention"&amp;gt;
        &amp;lt;param name="name"&amp;gt;stringreplace&amp;lt;/param&amp;gt;
        &amp;lt;param name="arg"&amp;gt;
          &amp;lt;param name="sourcetype"&amp;gt;
            &amp;lt;param name="fillOnEmpty"&amp;gt;True&amp;lt;/param&amp;gt;
            &amp;lt;param name="prefix"&amp;gt;sourcetype=&amp;lt;/param&amp;gt;
            &amp;lt;param name="value"&amp;gt;$target$&amp;lt;/param&amp;gt;
          &amp;lt;/param&amp;gt;
        &amp;lt;/param&amp;gt;
      &amp;lt;/param&amp;gt;
      &amp;lt;module name="SearchSelectLister"&amp;gt;
        &amp;lt;param name="label"&amp;gt;Component&amp;lt;/param&amp;gt;
        &amp;lt;param name="settingToCreate"&amp;gt;setting_component&amp;lt;/param&amp;gt;
        &amp;lt;param name="search"&amp;gt;index=_internal $sourcetype$ | stats count by component | fields - count | sort - component&amp;lt;/param&amp;gt;
        &amp;lt;param name="searchWhenChanged"&amp;gt;True&amp;lt;/param&amp;gt;
        &amp;lt;param name="applyOuterIntentionsToInternalSearch"&amp;gt;True&amp;lt;/param&amp;gt;
        &amp;lt;param name="searchFieldsToDisplay"&amp;gt;
          &amp;lt;list&amp;gt;
            &amp;lt;param name="label"&amp;gt;component&amp;lt;/param&amp;gt;
            &amp;lt;param name="value"&amp;gt;component&amp;lt;/param&amp;gt;
          &amp;lt;/list&amp;gt;
        &amp;lt;/param&amp;gt;
        &amp;lt;module name="ConvertToIntention"&amp;gt;
          &amp;lt;param name="settingToConvert"&amp;gt;setting_component&amp;lt;/param&amp;gt;
          &amp;lt;param name="intention"&amp;gt;
            &amp;lt;param name="name"&amp;gt;stringreplace&amp;lt;/param&amp;gt;
            &amp;lt;param name="arg"&amp;gt;
              &amp;lt;param name="component"&amp;gt;
                &amp;lt;param name="fillOnEmpty"&amp;gt;False&amp;lt;/param&amp;gt;
                &amp;lt;param name="prefix"&amp;gt;component=&amp;lt;/param&amp;gt;
                &amp;lt;param name="value"&amp;gt;$target$&amp;lt;/param&amp;gt;
              &amp;lt;/param&amp;gt;
            &amp;lt;/param&amp;gt;
          &amp;lt;/param&amp;gt;
          &amp;lt;module name="HiddenSearch" autoRun="True"&amp;gt;
            &amp;lt;param name="search"&amp;gt;| gentimes start=-1 | head 1 | eval output="You chose $sourcetype$ $component$" | table output&amp;lt;/param&amp;gt;
            &amp;lt;module name="SimpleResultsTable" layoutPanel="panel_row1_col1"/&amp;gt;
          &amp;lt;/module&amp;gt;
        &amp;lt;/module&amp;gt;
      &amp;lt;/module&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/view&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Aug 2012 23:31:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40174#M1893</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2012-08-20T23:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40175#M1894</link>
      <description>&lt;P&gt;I wanted what you just described where the second menu changes when you pick something from the first.  I must have missed something but I wasn't sure where to add it.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 14:08:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40175#M1894</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-21T14:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40176#M1895</link>
      <description>&lt;P&gt;if i change searchWhenChanged to True it will run the main search whenever i change an option.  It isn't making the filename menu do a "search" in the background to populate itself when the first menu selection is changed.   hmmmm&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 14:30:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40176#M1895</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-21T14:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40177#M1896</link>
      <description>&lt;P&gt;well I tried source="/opt/log/$registry$/web_server/info.log".  That didn't work, the  menu showed up blank.  I also tried adding | search $registry$ to the search.  It also made it show up blank.  If I keep it the way it was, I do get filenames show up.  This is strange.  I would think source="/opt/log/$registry$/web_server/info.log". would do the trick.  I'm going to look again.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:18:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40177#M1896</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2020-09-28T12:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40178#M1897</link>
      <description>&lt;P&gt;One thing I did change was the hiddensearch I took out the regex for filename since I already classified that earlier in the code.  No need for the regex in the search again.  I used $filename$ instead.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 15:26:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40178#M1897</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-21T15:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40179#M1898</link>
      <description>&lt;P&gt;I actually added that to the second search that populates the Filename drop down menu.  The result is it just sits there and results display.  I will take a second look.  And yes, been using UI examples, trying to sort all this out.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 17:02:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40179#M1898</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-21T17:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40180#M1899</link>
      <description>&lt;P&gt;I debug these views by converting them to Sideview Utils and picking up problems I see along the way. &lt;/P&gt;

&lt;P&gt;1) you're not actually using the &lt;CODE&gt;applyOuterIntentionsToInternalSearch&lt;/CODE&gt; argument on the second lister,  and that'll mean that the second lister will ignore changes to the first. &lt;/P&gt;

&lt;P&gt;2) beware of using autoRun="false".   it does nothing whatsoever but you should be even more wary of having more than one autoRun="True".   When you have an autoRun="True" containing another autoRun="True",  bad things happen.    As a result I have a zero tolerance policy on autoRun="false", cause people can get lulled into thinking that it's OK for there to be a lot of autoRun's sprinkled around. &lt;/P&gt;

&lt;P&gt;3) You probably know this but you're not actually usign the $registry$ key from your second pulldown. &lt;/P&gt;

&lt;P&gt;4) Never set searchWhenChanged to false.  I know it feels like what you want, but it isn't.   ever.   set searchWhenChanged to true, and on the SubmitButton module, you can set allowSoftSubmit to true or false, as you like.  &lt;/P&gt;

&lt;P&gt;5) Iv'e posted my converted XML here.  If you download Sideview Utils and start using it in your views, views like this get a bit simpler. &lt;/P&gt;

&lt;P&gt;Your view was 111 lines of XML, and the converted view below is 66 lines (not countign whitespace lines which I add for readability).  Plus as a bonus, you never have to think about intentions.    &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;view autoCancelInterval="90" isVisible="true" objectMode="SimpleForm" onunloadCancelJobs="true" template="dashboard.html"&amp;gt;
  &amp;lt;label&amp;gt;WAT form 2&amp;lt;/label&amp;gt;
  &amp;lt;module name="AccountBar" layoutPanel="appHeader"/&amp;gt;
  &amp;lt;module name="AppBar" layoutPanel="navigationHeader"/&amp;gt;
  &amp;lt;module name="SideviewUtils" layoutPanel="navigationHeader"/&amp;gt;
  &amp;lt;module name="Message" layoutPanel="messaging"&amp;gt;
    &amp;lt;param name="filter"&amp;gt;*&amp;lt;/param&amp;gt;
    &amp;lt;param name="clearOnJobDispatch"&amp;gt;False&amp;lt;/param&amp;gt;
    &amp;lt;param name="maxSize"&amp;gt;1&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="Message" layoutPanel="messaging"&amp;gt;
    &amp;lt;param name="filter"&amp;gt;splunk.search.job&amp;lt;/param&amp;gt;
    &amp;lt;param name="clearOnJobDispatch"&amp;gt;True&amp;lt;/param&amp;gt;
    &amp;lt;param name="maxSize"&amp;gt;1&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="TitleBar" layoutPanel="viewHeader"&amp;gt;
    &amp;lt;param name="actionsMenuFilter"&amp;gt;dashboard&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;

  &amp;lt;module name="Search" layoutPanel="viewHeader" autoRun="True"&amp;gt;
    &amp;lt;param name="search"&amp;gt;sourcetype=EPPWEB | rex field=source "^/opt/log/(?&amp;amp;lt;registry&amp;amp;gt;[^/]+)/web_server/.*$$" | fields registry | dedup registry&amp;lt;/param&amp;gt;
    &amp;lt;param name="earliest"&amp;gt;-60m&amp;lt;/param&amp;gt;

    &amp;lt;module name="Pulldown"&amp;gt;
      &amp;lt;param name="name"&amp;gt;registry&amp;lt;/param&amp;gt;
      &amp;lt;param name="label"&amp;gt;Select Registry&amp;lt;/param&amp;gt;
      &amp;lt;param name="valueField"&amp;gt;$name$&amp;lt;/param&amp;gt;
      &amp;lt;param name="staticOptions"&amp;gt;&amp;lt;/param&amp;gt;

      &amp;lt;module name="Search" layoutPanel="viewHeader"&amp;gt;
        &amp;lt;param name="search"&amp;gt;sourcetype="EPPWEB" daysago=1 source="/opt/log/*/web_server/info.log" WAT | rex field=_raw "downloading .*/(?&amp;amp;lt;filename&amp;amp;gt;.+?)$$" | fields filename | top filename&amp;lt;/param&amp;gt;

        &amp;lt;module name="Pulldown"&amp;gt;
          &amp;lt;param name="name"&amp;gt;filename&amp;lt;/param&amp;gt;
          &amp;lt;param name="label"&amp;gt;Select Filename&amp;lt;/param&amp;gt;
          &amp;lt;param name="valueField"&amp;gt;$name$&amp;lt;/param&amp;gt;
          &amp;lt;param name="staticOptions"&amp;gt;&amp;lt;/param&amp;gt;

          &amp;lt;module name="TimeRangePicker"&amp;gt;
            &amp;lt;param name="searchWhenChanged"&amp;gt;True&amp;lt;/param&amp;gt;

            &amp;lt;module name="SubmitButton"&amp;gt;
              &amp;lt;param name="allowSoftSubmit"&amp;gt;True&amp;lt;/param&amp;gt;
              &amp;lt;param name="label"&amp;gt;Search&amp;lt;/param&amp;gt;

              &amp;lt;module name="Search" layoutPanel="panel_row1_col1" group="WAT Test Search"&amp;gt;
                &amp;lt;param name="search"&amp;gt;sourcetype=EPPWEB source="/opt/log/$registry$/web_server/info.log" WAT | rex field=_raw "USER (?P&amp;amp;lt;registrar&amp;amp;gt;\[\d+-\w\w\]) downloading .*/(?&amp;amp;lt;filename&amp;amp;gt;.+?)$$" | chart count by registrar&amp;lt;/param&amp;gt;

                &amp;lt;module name="EnablePreview"&amp;gt;
                  &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;
                  &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;
                &amp;lt;/module&amp;gt;

                &amp;lt;module name="JobProgressIndicator"/&amp;gt;
                &amp;lt;module name="Paginator"&amp;gt;
                  &amp;lt;param name="count"&amp;gt;20&amp;lt;/param&amp;gt;
                  &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;

                  &amp;lt;module name="SimpleResultsTable"&amp;gt;
                    &amp;lt;param name="count"&amp;gt;20&amp;lt;/param&amp;gt;
                    &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
                    &amp;lt;param name="drilldown"&amp;gt;row&amp;lt;/param&amp;gt;
                    &amp;lt;module name="ConvertToDrilldownSearch"&amp;gt;
                      &amp;lt;module name="ViewRedirector"&amp;gt;
                        &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
                      &amp;lt;/module&amp;gt;
                    &amp;lt;/module&amp;gt;
                  &amp;lt;/module&amp;gt;
                &amp;lt;/module&amp;gt;
              &amp;lt;/module&amp;gt;
            &amp;lt;/module&amp;gt;
          &amp;lt;/module&amp;gt;
        &amp;lt;/module&amp;gt;
      &amp;lt;/module&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/view&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;EDIT :  The original XML I posted failed to replace the literal "$" chars in the regexes with two dollar signs,  ie $$.   Because Sdieview does $foo$ replacement everywhere, including in the search param of the Search module,   if you need a literal "$" character in the config you have to express it as "$$".  XML has been corrected now to use $$ in regexes. &lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 17:19:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40180#M1899</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-08-21T17:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40181#M1900</link>
      <description>&lt;P&gt;irony: i neglected to put an autoRun="True" in my converted view.  Fixed now.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 17:34:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40181#M1900</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-08-21T17:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40182#M1901</link>
      <description>&lt;P&gt;Tried to paste this as a new view but it doesn't show up.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 17:54:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40182#M1901</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-21T17:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40183#M1902</link>
      <description>&lt;P&gt;Sorry - you'll need the latest Sideview Utils (2.1) from the sideview site.  My guess is you have the older 1.3 version from Splunkbase.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 17:56:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40183#M1902</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-08-21T17:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40184#M1903</link>
      <description>&lt;P&gt;If you're just in normal Search app for splunk and not the sideviewutils app will it still work? probably stupid question, i'm going to get newer version and see&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 17:58:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40184#M1903</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-21T17:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40185#M1904</link>
      <description>&lt;P&gt;Yep.  When an app loads new UI modules in they automatically become usable from all apps.  You just need the SideviewUtils module up there, and then you can use any Sideview module int the view.  Make sure to read at least the first few pages of Utils docs though.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 18:06:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40185#M1904</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-08-21T18:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40186#M1905</link>
      <description>&lt;P&gt;ack!  unbalanced quotes somewhere!  looking now!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 19:27:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40186#M1905</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-21T19:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40187#M1906</link>
      <description>&lt;P&gt;The XML is checking out fine.  I don't know what the issue here is but the above code isn't allowing me to do anything.  I just get "unbalanced quotes" as the error.  SideView Utils was updated to latest version as well.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 20:20:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40187#M1906</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-21T20:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40188#M1907</link>
      <description>&lt;P&gt;Tried changing the final search to this but that didn't work either.  still getting "unbalanced quotes"  &lt;MODULE name="Search" layoutpanel="panel_row1_col1" group="WAT Test Search"&gt;&lt;BR /&gt;
                &lt;OBJECT&gt;&lt;PARAM name="search" /&gt;sourcetype=EPPWEB source="/opt/log/$registry$/web_server/info.log" WAT | rex field=_raw "USER (?P&amp;lt;registrar&amp;gt;[\d+-\w\w]) downloading $filename$" | chart count by registrar&lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:18:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40188#M1907</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2020-09-28T12:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40189#M1908</link>
      <description>&lt;P&gt;Sorry!   I didn't notice the "$" that you're using in the regex itself.  Because $ is a reserved character for $foo$ replacement in almost all Sideview Utils params, whenever you want an actual honest-to-god dollar character you have to use two consecutive dollar chars.   So change that regex and you should be all good.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 23:27:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40189#M1908</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-08-21T23:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40190#M1909</link>
      <description>&lt;P&gt;Strangely I'm getting notifications about new comments here from you, but those same comments aren't displaying on the site.  Sorry about the trouble! unabalanced quote errors &lt;EM&gt;usually&lt;/EM&gt; mean there's a literal "$" that should be replaced with a "$",  but the best thing to do is to put an HTML module in and look at what the $search$ key actually is, right downstream from your Search module.   That will be the exact same search that's throwing the unbalanced quotes error, so you'll be able to see where things are going wrong.   And feel free to send me the entire XML - nick [at] sideviewapps.com&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2012 18:59:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40190#M1909</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-08-22T18:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40191#M1910</link>
      <description>&lt;P&gt;I saw your latest comment about staticOptions (strangely that one hasn't displayed for me here either so I'm only going off the email notification).  setting staticOptions to blank is actually how you remove the All/* option from the menu.  I had that in there because you had the equivalent in the core module.   If you want all/* to be there just delete that param entirely because all/* is the default for staticOptions.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2012 21:48:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40191#M1910</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-08-22T21:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic menus not talking</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40192#M1911</link>
      <description>&lt;P&gt;one last question:  do regular splunk modules still work in SideViews?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2012 20:15:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-menus-not-talking/m-p/40192#M1911</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-08-23T20:15:08Z</dc:date>
    </item>
  </channel>
</rss>

