<?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: Floating data filter in dashboard frame in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/356742#M60677</link>
    <description>&lt;P&gt;I don't think so, but&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4587"&gt;@danschikore&lt;/a&gt;&amp;nbsp;will know for sure. If there's not it would make a good entry on the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;JMP Wish List&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Sun, 07 Feb 2021 15:47:57 GMT</pubDate>
    <dc:creator>Jeff_Perkinson</dc:creator>
    <dc:date>2021-02-07T15:47:57Z</dc:date>
    <item>
      <title>Floating data filter in dashboard frame</title>
      <link>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/355925#M60583</link>
      <description>&lt;P&gt;Hello JMP Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering if there is a way of making a data filter (that's embedded in a dashboard) float such that it always remains in frame? I made an add-in that creates a dashboard with a vertical stack of graphs on the right and a data filter on the left. When I scroll to the bottom of the dashboard and want to use the data filter to inspect the graphs there, I have to repeatedly scroll back up and then back down which isn't ideal in the long run. I am aware that I could just add a data filter for every so and so rows of graphs if I want to, or use &lt;STRONG&gt;Row &amp;gt; Data Filter&lt;/STRONG&gt;, but a data filter that floats on a predetermined column on the left whilst otherwise remaining embedded would be an elegant solution if at all possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ahmed&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:10:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/355925#M60583</guid>
      <dc:creator>A_Zaid</dc:creator>
      <dc:date>2023-06-11T11:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Floating data filter in dashboard frame</title>
      <link>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/356742#M60677</link>
      <description>&lt;P&gt;I don't think so, but&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4587"&gt;@danschikore&lt;/a&gt;&amp;nbsp;will know for sure. If there's not it would make a good entry on the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;JMP Wish List&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 15:47:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/356742#M60677</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2021-02-07T15:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Floating data filter in dashboard frame</title>
      <link>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/356829#M60687</link>
      <description>&lt;P&gt;Hi Ahmed - we have had requests for "sticky" filter layouts (and similarly for Column Switcher as well).&amp;nbsp; One workaround is to put the filter and reports in separate ScrollBox() containers.&amp;nbsp; In this example I made the boxes scroll in the vertical direction only.&amp;nbsp; If you have very wide reports, the second ScrollBox may need to scroll in both directions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Dan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "scroll filter",
	Data Filter Context Box(
		H List Box(
			V Scroll Box(
				Size( 500 ),
				&amp;lt;&amp;lt;Set Auto Stretching( 1, 1 ),
				dt &amp;lt;&amp;lt; Data Filter( Local, Add Filter( columns( :sex ), Where( :sex == "F" ) ) )
			),
			V Scroll Box(
				Size( 500 ),
				&amp;lt;&amp;lt;Set Auto Stretching( 1, 1 ),
				V List Box(
					dt &amp;lt;&amp;lt; Run Script( "Bivariate" ),
					dt &amp;lt;&amp;lt; Run Script( "Logistic" ),
					dt &amp;lt;&amp;lt; Run Script( "Distribution" )
				)
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 07 Feb 2021 20:19:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/356829#M60687</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2021-02-07T20:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Floating data filter in dashboard frame</title>
      <link>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/356973#M60702</link>
      <description>&lt;P&gt;Hi Dan, this is a great workaround! I'll try to implement in my add-in code and see how it goes. Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, thank you Jeff (&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6878"&gt;@Jeff_Perkinson&lt;/a&gt;) for linking Dan and bringing the JMP Wish List to my awareness!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best to both of you,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ahmed&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 08:53:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Floating-data-filter-in-dashboard-frame/m-p/356973#M60702</guid>
      <dc:creator>A_Zaid</dc:creator>
      <dc:date>2021-02-08T08:53:24Z</dc:date>
    </item>
  </channel>
</rss>

