<?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: Sideview Utils Static Pulldown Pie charts in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53439#M3060</link>
    <description>&lt;P&gt;i understand what you  mean, i'm just struggling how to fix it.  I'm still a noob in a way i guess!  I'm just happy I see charts and searches actually working!  &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Sep 2012 20:38:56 GMT</pubDate>
    <dc:creator>gnovak</dc:creator>
    <dc:date>2012-09-06T20:38:56Z</dc:date>
    <item>
      <title>Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53425#M3046</link>
      <description>&lt;P&gt;I have 2 pie charts on a form and each one has a static pulldown menu for the amount of results displayed.  (Example:  10 results, 20 results).  This was created using SideView Utils.&lt;/P&gt;

&lt;P&gt;However I'm noticing that the first pie charts drop down menu is changing BOTH pie charts.  It's even changing the value in the second pie charts drop down when something is selected. &lt;/P&gt;

&lt;P&gt;How do I separate both pie charts with their static menus?  I want each pie chart to change when only the menu for that chart is changed.&lt;/P&gt;

&lt;P&gt;Here is my code.  Again I put it on pastebin because I cannot get the code to show up correctly using the code sample button on this form.  &lt;/P&gt;

&lt;P&gt;&lt;A href="http://pastebin.com/cqfj41rc"&gt;http://pastebin.com/cqfj41rc&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 16:36:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53425#M3046</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T16:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53426#M3047</link>
      <description>&lt;P&gt;1) It's not causing your immediate problem, but you've got a lot of autoRun="True" sprinkled all around, and it &lt;EM&gt;will&lt;/EM&gt; be causing some problems you haven't found yet.  It's natural to think that only certain modules (like Search) need an 'autoRun="True"' attribute.  But they dont.  Just put one single autoRun="true" way up at the highest point beneath which you want everything to run when the page loads, and delete the rest.    The other ones are causing any number of evil problems and slowing down your view. And never put autoRun="False" anywhere because it will do nothing. &lt;/P&gt;

&lt;P&gt;2) However the main problem that you're hitting is that your nesting was a little screwy.   I cleaned up the indentation in the file and at that point it becomes a lot easier to read.  If you do the same you'll see that your second Pulldown and its chart is simply nested inside the dropdown from the other panel.   This looks completely unintentional. &lt;/P&gt;

&lt;P&gt;Nesting in advanced XML is 100% about functionality.   The layout falls out as a strange side effect of the layoutPanel attributes.  But you really have to look at the nesting because that's telling the modules how you want them to work together.    If you put anything inside a Pulldown module or really inside anything that the user can interact with,  then when that interaction comes, the stuff you nested inside will &lt;EM&gt;always&lt;/EM&gt; reload/rerun/change, etc...      So the solution is to denest that inner panel so it's not all nested inside the panel before it.    I think that all the modules on which you have layoutPanel="panel_rowN_colM",  all those want to be at the same indentation level...&lt;/P&gt;

&lt;P&gt;I would ordinarily take a stab at fixing it,  but many of these panels are unnecessarily nested inside parts of eachother so I think you'll have to just go through again.     &lt;/P&gt;

&lt;P&gt;One recommendation I can give is that (assuming you have the latest Sideview Utils from &lt;A href="http://sideviewapps.com/apps/sideview-utils" target="_blank"&gt;http://sideviewapps.com/apps/sideview-utils&lt;/A&gt; ), there is something called the Sideview Editor.   It's an authoring system for editing/creating/debugging advanced xml views without ever actually seeing the XML.   Anyway you can also use this to clean up indentation of the XML files.   If you edit anything at all in this view,  like edit just one module, change nothing and submit the edit form,  it'll clean up all your XML indentation but leave all sorts of niceties like module tags will have name attributes as the first attribute, and it wont mess with your whitespace and it'll CDATA html and search params.... etc.    Anyway, I use it as a 2-second tool to clean up demon-possessed indentation.   Note that it'll write the modified view to /local instead of default so you might have to look around to find it. &lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:23:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53426#M3047</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2020-09-28T12:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53427#M3048</link>
      <description>&lt;P&gt;Yea, the code-formatting buttons on answers itself dont really work.  Nor does the 'preview' mode.  You can however just ignore them both,   indent any code you want to monospace-format with 4 spaces on each line, or for smaller one-liners just enclose the code in backticks, and it'll work fine.  Again ignore the 'preview' stuff because it'll be making you think the 4 spaces aren't going to work.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 16:59:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53427#M3048</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-06T16:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53428#M3049</link>
      <description>&lt;P&gt;actually for this form I don't want ANY searching to happen until the user selects what they want from the drop dowm menus and clicks "search" but I can't seem to figure out how to get this to happen&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 17:02:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53428#M3049</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T17:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53429#M3050</link>
      <description>&lt;P&gt;I'll see about cleaning this up a bit&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 17:05:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53429#M3050</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T17:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53430#M3051</link>
      <description>&lt;P&gt;OK no problem.  You'll want to put in a Button module after the controls you have at the top, but before the panels, such that the XML wiring the N panels is  all nested inside the button.  Then give the Button an 'allowSoftSubmit' param of False.   But leave the autoRun="True" up at the top because you need that to drive the initial population of your dynamic Pulldowns up there.  I hope this makes sense...   It's an area in which I hope to still make improvements fwiw.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 17:05:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53430#M3051</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-06T17:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53431#M3052</link>
      <description>&lt;P&gt;I'll check that out&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 18:12:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53431#M3052</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T18:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53432#M3053</link>
      <description>&lt;P&gt;I only have one autorun=true at this point and it's still not doing what I want it to.  I already had a submit button at the top of the code and i did allowsoftsubmit=false and it still searched directly after the drop down menus were populated.  I'm going to keep looking.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 18:31:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53432#M3053</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T18:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53433#M3054</link>
      <description>&lt;P&gt;i think i see what you mean about my code.  i'm cleaning it up&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 19:12:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53433#M3054</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T19:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53434#M3055</link>
      <description>&lt;P&gt;You have that autoRun="True" at the top. Then the autoRun="False" a bit lower.  Then you have autoRun="True" on two Pulldown modules lower down.   So 3 autoRun="True" and 1 autoRun="False".   Delete them all except for the topmost autoRun="True" and the view will load the way you want.   I really need to put something into Sideview Utils that prevents people from shooting themselves in the foot like this.  I'll try and get that in soon.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 19:52:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53434#M3055</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-06T19:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53435#M3056</link>
      <description>&lt;P&gt;i did and still not working.  Not sure why it's doing this.  as soon as the filename menu populates the search kicks off and all the graphs load.  here it is again.  &lt;A href="http://pastebin.com/skdUQehV"&gt;http://pastebin.com/skdUQehV&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 19:56:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53435#M3056</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T19:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53436#M3057</link>
      <description>&lt;P&gt;And you followed my other comments about denesting the one part of the XML so it wasnt inside the Pulldowns?  Can you repost the modified version on pasteBin?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 20:00:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53436#M3057</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-06T20:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53437#M3058</link>
      <description>&lt;P&gt;i'm not sure what i'm supposed to be looking for...I tried something, moved some stuff around but it did not work.  The fields in the drop down menus aren't sharing the same search so looking at some of the examples, i'm not sure.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 20:26:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53437#M3058</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T20:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53438#M3059</link>
      <description>&lt;P&gt;OK.   Basically the parts where you have the group and layoutPanel attributes.  From that point, each of those modules should be at the same level,  ie same indentation in the file once the indentation is cleaned up.     Right now the way you have it the other panels are basically "downstream" from the pulldown in another panel, which is why they're having that dependent relationship.   In a couple hours I can try and fix it for you going off of the XML you posted.  It'll only take me 10 or 15mins probably and you'll see the difference.  I'll also try and clean it up in general.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 20:28:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53438#M3059</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-06T20:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53439#M3060</link>
      <description>&lt;P&gt;i understand what you  mean, i'm just struggling how to fix it.  I'm still a noob in a way i guess!  I'm just happy I see charts and searches actually working!  &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 20:38:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53439#M3060</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-06T20:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53440#M3061</link>
      <description>&lt;P&gt;No worries.  It seems completely opaque and insane until you get it.    Read the "Framework intro" page a couple times if you haven't already (Key Techniques &amp;gt; Overview of the advanced xml).     Then if you dont like denesting and de-intending XML (cause who does), you can always try your hand at using the Sideview Editor in "Reattach" mode.  Let me see if I can just clean this up myself though and send it back.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:05:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53440#M3061</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-06T21:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53441#M3062</link>
      <description>&lt;P&gt;OK.   I used the "Reattach" mode in the Editor to denest the N separate panels from being inside eachother.  For instance the second panel's config was below the paginator to the first panel.  So even clicking a 'page 2' link in the first panel would reload the second panel.  Likewise the third panel was downstream (ie nested inside) the paginator of the second panel.... and so on and so forth.   The view is massively less indented now.    And I cleaned up a lot of other things too.  &lt;A href="http://pastebin.com/fP9KYtAd"&gt;http://pastebin.com/fP9KYtAd&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:23:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53441#M3062</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-06T21:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53442#M3063</link>
      <description>&lt;P&gt;This did actually work.  Only thing is why is there a page module on the first pie chart?  Tried removing paginator but it caused the second chart to autoload when the drop down menus loaded.  weird?  I also removed an extra "message" module I had at the top.  I must have posted it twice in there.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2012 18:28:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53442#M3063</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2012-09-07T18:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Sideview Utils Static Pulldown Pie charts</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53443#M3064</link>
      <description>&lt;P&gt;The Pager is probably there cause you had a Paginator there,  which is probably from an earlier era when there was a SimpleResultsTable there instead of a chart.    Sorry.  Yes remove it.  As for the problem you saw when you removed it, I'm betting you removed the Pager by deleting the &lt;CODE&gt;&amp;lt;module name="Pager"&amp;gt;&lt;/CODE&gt;  line,  and then scrolling to the bottom of the file and removing one &lt;CODE&gt;&amp;lt;/module&amp;gt;&lt;/CODE&gt; tag.   This is precisely what got you into the trouble in the first place. &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;  If you consider the indentation picture this creates, you just indented the entire next panel inside that one.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2012 18:36:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Sideview-Utils-Static-Pulldown-Pie-charts/m-p/53443#M3064</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-07T18:36:00Z</dc:date>
    </item>
  </channel>
</rss>

