<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" version="2.0">
  <channel>
    <title>Recent Posts by Cerberus | Prototype UI</title>
    <link>http://forums.prototype-ui.com/users/24/posts</link>
    <language>en-us</language>
    <ttl>60</ttl>
    <atom:link rel="search" type="application/opensearchdescription+xml" href="http://forums.prototype-ui.com/open_search.xml"/>
    <item>
      <title>Overlay Style Hard coded? replied by cerberus @ Thu, 17 Apr 2008 21:12:01 -0000</title>
      <description>&lt;p&gt;Why is this overlayStyle hard code? Should it be defined in the style sheets?&lt;/p&gt;


	&lt;pre&gt;&lt;code&gt;overlayStyle: "position: absolute; top: 0; left: 0; display: none; width: 100%;",&lt;/code&gt;&lt;/pre&gt;


	&lt;pre&gt;&lt;code&gt;createOverlays: function() {
  this.modalOverlay = new Element("div", { style: this.overlayStyle });
  this.dragOverlay  = new Element("div", { style: this.overlayStyle+"height: 100%" });
  this.iframe       = Prototype.Browser.IE ? new UI.IframeShim() : null;
}&lt;/code&gt;&lt;/pre&gt;</description>
      <pubDate>Thu, 17 Apr 2008 21:12:01 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:2:120:343</guid>
      <author>cerberus</author>
      <link>http://forums.prototype-ui.com/forums/2/topics/120</link>
    </item>
    <item>
      <title>Window constrains replied by cerberus @ Thu, 17 Apr 2008 20:39:53 -0000</title>
      <description>&lt;p&gt;This is the Closed I&amp;#8217;ve gotten to it, Might be able to add it into the options for building the window&lt;/p&gt;


	&lt;p&gt;var viewPoint = { top : 0, left: 0 };&lt;/p&gt;


	&lt;p&gt;UI.Window.addMethods({
    moveDrag: function(dx, dy) {
        var t = this.initBounds.top + dy;
        var l = this.initBounds.left + dx;
        if(this.getPosition().top &amp;lt;= viewPoint.top)
            t = viewPoint.top + 1;
        if(this.getPosition().left &amp;lt;= viewPoint.left)
            l = viewPoint.left + 1;
        this.setPosition(t, l);
    }&lt;br /&gt;}&lt;/p&gt;</description>
      <pubDate>Thu, 17 Apr 2008 20:39:53 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:2:107:342</guid>
      <author>cerberus</author>
      <link>http://forums.prototype-ui.com/forums/2/topics/107</link>
    </item>
    <item>
      <title>Multiple Carousels replied by cerberus @ Thu, 17 Apr 2008 14:33:19 -0000</title>
      <description>&lt;p&gt;Can you supply an code example, I&amp;#8217;ve been able to get multiple Carousels work however I did need them to have different styles&lt;/p&gt;</description>
      <pubDate>Thu, 17 Apr 2008 14:33:19 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:3:114:339</guid>
      <author>cerberus</author>
      <link>http://forums.prototype-ui.com/forums/3/topics/114</link>
    </item>
    <item>
      <title>observe(&amp;quot;blurred&amp;quot;) replied by cerberus @ Thu, 03 Apr 2008 15:39:29 -0000</title>
      <description>&lt;p&gt;don&amp;#8217;t do the Above with a Ajax Dialog, for some reason the Dialog Box doesn&amp;#8217;t have focus; in other words as soon as the window opens it&amp;#8217;ll close. Work around is to request your content and use setContent in your dialog rather then setAjaxContent.&lt;/p&gt;</description>
      <pubDate>Thu, 03 Apr 2008 15:39:29 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:2:78:300</guid>
      <author>cerberus</author>
      <link>http://forums.prototype-ui.com/forums/2/topics/78</link>
    </item>
    <item>
      <title>Problem with Dialog replied by cerberus @ Tue, 01 Apr 2008 13:15:46 -0000</title>
      <description>&lt;p&gt;You need to set the top position on the dialog, center will send the page to the top of the web page. As for the visible issue can&amp;#8217;t help you with out seeing the code.&lt;/p&gt;</description>
      <pubDate>Tue, 01 Apr 2008 13:15:46 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:2:105:293</guid>
      <author>cerberus</author>
      <link>http://forums.prototype-ui.com/forums/2/topics/105</link>
    </item>
    <item>
      <title>Adapt on a dialog window replied by cerberus @ Mon, 31 Mar 2008 16:28:49 -0000</title>
      <description>&lt;p&gt;Trying to use adapt() on a dialog window unfortunately it appears that adapt doesn&amp;#8217;t take into account the buttons that are add to the window so I end up with a scroll bar. Is there anyway to correct this?&lt;/p&gt;</description>
      <pubDate>Mon, 31 Mar 2008 16:28:49 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:2:102:284</guid>
      <author>cerberus</author>
      <link>http://forums.prototype-ui.com/forums/2/topics/102</link>
    </item>
    <item>
      <title>check for hidden windows replied by cerberus @ Wed, 19 Mar 2008 20:30:20 -0000</title>
      <description>&lt;p&gt;if(!$(&amp;#8216;WinID&amp;#8217;)){&lt;br /&gt;&lt;span class="caps"&gt;WINDOW IS NOT OPEN SO OPEN IT&lt;/span&gt;&lt;br /&gt;}ELSE{&lt;br /&gt;UI.defaultWM.getWindow(&amp;#8216;WinID&amp;#8217;).bringToFront().focus();&lt;br /&gt;}&lt;/p&gt;</description>
      <pubDate>Wed, 19 Mar 2008 20:30:20 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:2:92:254</guid>
      <author>cerberus</author>
      <link>http://forums.prototype-ui.com/forums/2/topics/92</link>
    </item>
    <item>
      <title>Adjust Winodw options replied by cerberus @ Tue, 08 Jan 2008 20:22:12 -0000</title>
      <description>&lt;p&gt;Would it be possible to adjust the windows option (lets say &amp;#8216;draggable&amp;#8217;) after the window is loaded. The reason I ask is I&amp;#8217;m play around with opening a window(w2) within a windows(w1), the problem is that when you drag w2 w1 moves need to fire event onmousedown w2 to set w1 draggabe to false.&lt;/p&gt;</description>
      <pubDate>Tue, 08 Jan 2008 20:22:12 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:2:21:52</guid>
      <author>cerberus</author>
      <link>http://forums.prototype-ui.com/forums/2/topics/21</link>
    </item>
  </channel>
</rss>
