<?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 XML Form Error in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/XML-Form-Error/m-p/135063#M8063</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I'm getting the following error "Extra content at the end of the document" with the following form XML:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Monitoring&amp;lt;/label&amp;gt;

  &amp;lt;fieldset autoRun="false" submitButton="true"&amp;gt;

    &amp;lt;input type="time" searchWhenChanged="false"&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliestTime&amp;gt;-7d@h&amp;lt;/earliestTime&amp;gt;
        &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;

    &amp;lt;input type="dropdown" token="server"&amp;gt;
      &amp;lt;label&amp;gt;Choose a Server Set:&amp;lt;/label&amp;gt;
      &amp;lt;prefix&amp;gt;tag=&amp;lt;/prefix&amp;gt;
      &amp;lt;choice value=”Prod”&amp;gt;Production&amp;lt;/choice&amp;gt;
      &amp;lt;choice value=”QA”&amp;gt;QA&amp;lt;/choice&amp;gt;
      &amp;lt;choice value=”Dev2”&amp;gt;Dev2&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;

  &amp;lt;/fieldset&amp;gt;

  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
..... etc
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It works fine without the dropdown, but the dropdown creates this issue. I've looked at it for a while and just cannot find the issue. Any suggestions?&lt;/P&gt;

&lt;P&gt;Thanks!!&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jul 2014 13:48:51 GMT</pubDate>
    <dc:creator>edschembor</dc:creator>
    <dc:date>2014-07-09T13:48:51Z</dc:date>
    <item>
      <title>XML Form Error</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/XML-Form-Error/m-p/135063#M8063</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I'm getting the following error "Extra content at the end of the document" with the following form XML:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Monitoring&amp;lt;/label&amp;gt;

  &amp;lt;fieldset autoRun="false" submitButton="true"&amp;gt;

    &amp;lt;input type="time" searchWhenChanged="false"&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliestTime&amp;gt;-7d@h&amp;lt;/earliestTime&amp;gt;
        &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;

    &amp;lt;input type="dropdown" token="server"&amp;gt;
      &amp;lt;label&amp;gt;Choose a Server Set:&amp;lt;/label&amp;gt;
      &amp;lt;prefix&amp;gt;tag=&amp;lt;/prefix&amp;gt;
      &amp;lt;choice value=”Prod”&amp;gt;Production&amp;lt;/choice&amp;gt;
      &amp;lt;choice value=”QA”&amp;gt;QA&amp;lt;/choice&amp;gt;
      &amp;lt;choice value=”Dev2”&amp;gt;Dev2&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;

  &amp;lt;/fieldset&amp;gt;

  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
..... etc
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It works fine without the dropdown, but the dropdown creates this issue. I've looked at it for a while and just cannot find the issue. Any suggestions?&lt;/P&gt;

&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2014 13:48:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/XML-Form-Error/m-p/135063#M8063</guid>
      <dc:creator>edschembor</dc:creator>
      <dc:date>2014-07-09T13:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: XML Form Error</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/XML-Form-Error/m-p/135064#M8064</link>
      <description>&lt;P&gt;I guess the double quotes used for dropdown value is the problem. I corrected it and following work for me.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Monitoring&amp;lt;/label&amp;gt;

  &amp;lt;fieldset autoRun="false" submitButton="true"&amp;gt;

    &amp;lt;input type="time" searchWhenChanged="false"&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliestTime&amp;gt;-7d@h&amp;lt;/earliestTime&amp;gt;
        &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;

    &amp;lt;input type="dropdown" token="server"&amp;gt;
      &amp;lt;label&amp;gt;Choose a Server Set:&amp;lt;/label&amp;gt;
      &amp;lt;prefix&amp;gt;tag=&amp;lt;/prefix&amp;gt;
      &amp;lt;choice value="Prod"&amp;gt;Production&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="QA"&amp;gt;QA&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="Dev2"&amp;gt;Dev2&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;    
  &amp;lt;/fieldset&amp;gt;
...
...
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Jul 2014 14:02:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/XML-Form-Error/m-p/135064#M8064</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-07-09T14:02:03Z</dc:date>
    </item>
  </channel>
</rss>

