<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>glowPopUpPanel jQuery Plugin</title><link>https://community.telligent.com/community/13/w/api-documentation/75800/glowpopuppanel-jquery-plugin</link><description>&lt;p&gt;&lt;span&gt;Developing on Verint Community? Use the API documentation as a reference for all supported interactions with Verint Community.&lt;/span&gt;&lt;/p&gt;</description><dc:language>en-US</dc:language><generator>14.0.0.586 14</generator><item><title>glowPopUpPanel jQuery Plugin</title><link>https://community.telligent.com/community/13/w/api-documentation/75800/glowpopuppanel-jquery-plugin</link><pubDate>Fri, 08 Mar 2024 17:51:48 GMT</pubDate><guid isPermaLink="false">0f511725-31de-4e9d-ac49-454da88e9309</guid><dc:creator>Ben Tiedt</dc:creator><comments>https://community.telligent.com/community/13/w/api-documentation/75800/glowpopuppanel-jquery-plugin#comments</comments><description>Current Revision posted to API Documentation by Ben Tiedt on 03/08/2024 17:51:48&lt;br /&gt;
&lt;hr class="generated-documentation-start" style="border-width:0;" /&gt;&lt;h3&gt;jQuery.fn.glowPopUpPanel&lt;/h3&gt;
&lt;p&gt;Renders an animated display panel on top of the document&lt;/p&gt;
&lt;h3&gt;Usage&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(options)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;where &amp;#39;SELECTOR&amp;#39; is a div element containing content to display as a pop up panel&lt;/p&gt;
&lt;h3&gt;Options&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;cssClass&lt;/code&gt;: string class name to apply to the pop panel
&lt;ul&gt;
&lt;li&gt;default: &lt;em&gt;empty string&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;position&lt;/code&gt;: position to open the panel.  any combination of left, right, up, down, center
&lt;ul&gt;
&lt;li&gt;default: &lt;code&gt;updown&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;zIndex&lt;/code&gt;: z-index at which to render the panel
&lt;ul&gt;
&lt;li&gt;default: &lt;code&gt;100&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;hideOnDocumentClick&lt;/code&gt;: boolean value of whether to hide the panel when the document is clicked
&lt;ul&gt;
&lt;li&gt;default: &lt;code&gt;true&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;focusOnOpen&lt;/code&gt;: boolean value of whether to focus the contents of the pop-up when it opens. If null, the pop-up will focus only when the currently focused element is not a text input.
&lt;ul&gt;
&lt;li&gt;default: &lt;code&gt;null&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Events&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;glowPopUpPanelShown&lt;/code&gt; - triggered when a panel is shown&lt;/li&gt;
&lt;li&gt;&lt;code&gt;glowPopUpPanelHidden&lt;/code&gt; - triggered when a panel is hidden&lt;/li&gt;
&lt;li&gt;&lt;code&gt;glowPopUpPanelMouseOver&lt;/code&gt; - triggered when a panel is moused over&lt;/li&gt;
&lt;li&gt;&lt;code&gt;glowPopUpPanelMouseOut&lt;/code&gt; - triggered when a panel is moused out&lt;/li&gt;
&lt;li&gt;&lt;code&gt;glowPopUpPanelShowing&lt;/code&gt; - triggered when a panel is starting to be shown&lt;/li&gt;
&lt;li&gt;&lt;code&gt;glowPopUpPanelHiding&lt;/code&gt; - triggered when a panel is starting to be hidden&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Methods&lt;/h3&gt;
&lt;h4&gt;isShown&lt;/h4&gt;
&lt;p&gt;Returns whether the panel is currently visible&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;var isShown = $(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;isShown&amp;#39;);
&lt;/code&gt;&lt;/pre&gt;

&lt;h4&gt;isOpening&lt;/h4&gt;
&lt;p&gt;Returns whether the panel is currently opening&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;var isOpening = $(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;isOpening&amp;#39;);
&lt;/code&gt;&lt;/pre&gt;

&lt;h4&gt;show&lt;/h4&gt;
&lt;p&gt;Shows the panel&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;show&amp;#39;);
&lt;/code&gt;&lt;/pre&gt;

&lt;h4&gt;hide&lt;/h4&gt;
&lt;p&gt;Hides the panel&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;hide&amp;#39;);
&lt;/code&gt;&lt;/pre&gt;

&lt;h4&gt;empty&lt;/h4&gt;
&lt;p&gt;Empties the content of the panel&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;empty&amp;#39;);
&lt;/code&gt;&lt;/pre&gt;

&lt;h4&gt;html&lt;/h4&gt;
&lt;p&gt;Sets new HTML to display in a panel&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;html&amp;#39;, &amp;#39;&amp;lt;strong&amp;gt;HTML Content&amp;lt;/strong&amp;gt;&amp;#39;);
&lt;/code&gt;&lt;/pre&gt;

&lt;h4&gt;append&lt;/h4&gt;
&lt;p&gt;Appends new content to existing content in the panel where content is a string, element, or selection&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;append&amp;#39;, &amp;#39;&amp;lt;strong&amp;gt;HTML Content&amp;lt;/strong&amp;gt;&amp;#39;);
&lt;/code&gt;&lt;/pre&gt;

&lt;h4&gt;remove&lt;/h4&gt;
&lt;p&gt;Removes a the the pop up panel&amp;#39;s element&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;remove&amp;#39;, element);
&lt;/code&gt;&lt;/pre&gt;

&lt;h4&gt;children&lt;/h4&gt;
&lt;p&gt;Returns all current children elements of the panel&amp;#39;s content&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;var children = $(&amp;#39;SELECTOR&amp;#39;).glowPopUpPanel(&amp;#39;children&amp;#39;);
&lt;/code&gt;&lt;/pre&gt;

&lt;hr class="generated-documentation-end" style="border-width:0;" /&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item></channel></rss>