<?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 NotImplementedError: Cannot find object mapper for panel type: form in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/NotImplementedError-Cannot-find-object-mapper-for-panel-type/m-p/9704#M36</link>
    <description>&lt;P&gt;When attempting to make a Simple Form Search using the Developer Manual documentation, I encounter the error:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
  &lt;P&gt;NotImplementedError: Cannot find object mapper for panel type: form&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I'm confused as to what I may be missing here?  Here is the XML that I'm building my view with.  I'm running 4.0.8&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version='1.0' encoding='utf-8'?&amp;gt;
&amp;lt;dashboard&amp;gt;
&amp;lt;label&amp;gt;Form search test&amp;lt;/label&amp;gt;
&amp;lt;row&amp;gt;
   &amp;lt;form&amp;gt;
   &amp;lt;label&amp;gt;My form search&amp;lt;/label&amp;gt;
   &amp;lt;searchTemplate&amp;gt;$ipaddress$&amp;lt;/searchTemplate&amp;gt;
   &amp;lt;fieldset&amp;gt;
      &amp;lt;input type="text" token="ipaddress" /&amp;gt;
   &amp;lt;/fieldset&amp;gt;
  &amp;lt;/form&amp;gt;
&amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 09 Feb 2010 08:59:20 GMT</pubDate>
    <dc:creator>Yancy</dc:creator>
    <dc:date>2010-02-09T08:59:20Z</dc:date>
    <item>
      <title>NotImplementedError: Cannot find object mapper for panel type: form</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/NotImplementedError-Cannot-find-object-mapper-for-panel-type/m-p/9704#M36</link>
      <description>&lt;P&gt;When attempting to make a Simple Form Search using the Developer Manual documentation, I encounter the error:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
  &lt;P&gt;NotImplementedError: Cannot find object mapper for panel type: form&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I'm confused as to what I may be missing here?  Here is the XML that I'm building my view with.  I'm running 4.0.8&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version='1.0' encoding='utf-8'?&amp;gt;
&amp;lt;dashboard&amp;gt;
&amp;lt;label&amp;gt;Form search test&amp;lt;/label&amp;gt;
&amp;lt;row&amp;gt;
   &amp;lt;form&amp;gt;
   &amp;lt;label&amp;gt;My form search&amp;lt;/label&amp;gt;
   &amp;lt;searchTemplate&amp;gt;$ipaddress$&amp;lt;/searchTemplate&amp;gt;
   &amp;lt;fieldset&amp;gt;
      &amp;lt;input type="text" token="ipaddress" /&amp;gt;
   &amp;lt;/fieldset&amp;gt;
  &amp;lt;/form&amp;gt;
&amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Feb 2010 08:59:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/NotImplementedError-Cannot-find-object-mapper-for-panel-type/m-p/9704#M36</guid>
      <dc:creator>Yancy</dc:creator>
      <dc:date>2010-02-09T08:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: NotImplementedError: Cannot find object mapper for panel type: form</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/NotImplementedError-Cannot-find-object-mapper-for-panel-type/m-p/9705#M37</link>
      <description>&lt;P&gt;The top level tag should be &lt;CODE&gt;&amp;lt;form&amp;gt;&lt;/CODE&gt;, like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;Form search test&amp;lt;/label&amp;gt;
    &amp;lt;searchTemplate&amp;gt;$ipaddress$&amp;lt;/searchTemplate&amp;gt;
    &amp;lt;fieldset&amp;gt;
        &amp;lt;input type="text" token="ipaddress" /&amp;gt;
    &amp;lt;/fieldset&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Now, you'll want something to show the results of your search so you need to add some kind of output.  For example, if you want to see the raw events:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;Form search test&amp;lt;/label&amp;gt;
    &amp;lt;searchTemplate&amp;gt;$ipaddress$&amp;lt;/searchTemplate&amp;gt;
    &amp;lt;fieldset&amp;gt;
        &amp;lt;input type="text" token="ipaddress" /&amp;gt;
    &amp;lt;/fieldset&amp;gt;
    &amp;lt;row&amp;gt;
        &amp;lt;event /&amp;gt;
    &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;For a full description of available tags in form searches, see: &lt;A href="http://www.splunk.com/base/Documentation/4.1/Developer/FormIntro" rel="nofollow"&gt;http://www.splunk.com/base/Documentation/4.1/Developer/FormIntro&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2010 11:07:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/NotImplementedError-Cannot-find-object-mapper-for-panel-type/m-p/9705#M37</guid>
      <dc:creator>Johnvey</dc:creator>
      <dc:date>2010-02-09T11:07:09Z</dc:date>
    </item>
  </channel>
</rss>

