<?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 in 'problem with UI.Ajax.Carousel' | Prototype UI</title>
    <link>http://forums.prototype-ui.com/forums/3/topics/154</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"/>
    <description></description>
    <item>
      <title>problem with UI.Ajax.Carousel replied by jigga @ Tue, 16 Dec 2008 13:38:59 -0000</title>
      <description>&lt;p&gt;I gave up and droped prototype for Jquery. It solved all my problems..&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://sorgalla.com/jcarousel/"&gt;http://sorgalla.com/jcarousel/&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;here you can find the source and it was so easy to use. It loads images with ajax on fly.&lt;/p&gt;</description>
      <pubDate>Tue, 16 Dec 2008 13:38:59 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:3:154:633</guid>
      <author>jigga</author>
      <link>http://forums.prototype-ui.com/forums/3/topics/154</link>
    </item>
    <item>
      <title>problem with UI.Ajax.Carousel replied by jigga @ Mon, 15 Dec 2008 15:44:47 -0000</title>
      <description>&lt;p&gt;hc, how do you get it to fetch different images each time you make a request?&lt;/p&gt;


	&lt;p&gt;my problem is that I make a request to a php-file and return 10 images, but I&amp;#8217;m not sure what to set the variables &amp;#8220;to&amp;#8221; and &amp;#8220;from&amp;#8221; and &amp;#8220;more&amp;#8221; to?&lt;/p&gt;


	&lt;p&gt;and also, what I want is to fetch more images after i have scrolled passed the 10 I initiallize my carousel with. So when I reach the end, I don&amp;#8217;t know how to make a second request and also what to pass in my php file this second time? Am I supposed to keep track which images I have passed on in the initiallize step in session variables or what?&lt;/p&gt;


	&lt;p&gt;Any help or ideas whould be appreciated..&lt;/p&gt;</description>
      <pubDate>Mon, 15 Dec 2008 15:44:47 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:3:154:632</guid>
      <author>jigga</author>
      <link>http://forums.prototype-ui.com/forums/3/topics/154</link>
    </item>
    <item>
      <title>problem with UI.Ajax.Carousel replied by hc @ Mon, 07 Jul 2008 12:20:47 -0000</title>
      <description>&lt;p&gt;any feedback at all would be awesome.&lt;br /&gt;thanks in advance, &lt;br /&gt;chris&lt;/p&gt;</description>
      <pubDate>Mon, 07 Jul 2008 12:20:47 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:3:154:526</guid>
      <author>hc</author>
      <link>http://forums.prototype-ui.com/forums/3/topics/154</link>
    </item>
    <item>
      <title>problem with UI.Ajax.Carousel replied by hc @ Tue, 10 Jun 2008 14:59:09 -0000</title>
      <description>&lt;p&gt;well, i managed it and solved the problem above myself! =)&lt;/p&gt;


&lt;strong&gt;but i still have another demand!&lt;/strong&gt; i am using a button to jump several steps at once and load more content in one step&amp;#8230; &lt;br /&gt;&lt;pre&gt;&lt;code&gt;
    myButton.observe('click', function(event) {
        gCarousel[gc].scroll(100*thumbSize);
    });
&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;right now the carousel will load the whole content in single requests, which is not very much efficient.
	&lt;ul&gt;
	&lt;li&gt;is there a way to do it more efficiently? &lt;/li&gt;
		&lt;li&gt;or are there plans to implement anything to the library to handle this matter?&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;any help would again be appreciated.&lt;br /&gt;cheers, chris&lt;/p&gt;</description>
      <pubDate>Tue, 10 Jun 2008 14:59:09 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:3:154:483</guid>
      <author>hc</author>
      <link>http://forums.prototype-ui.com/forums/3/topics/154</link>
    </item>
    <item>
      <title>problem with UI.Ajax.Carousel replied by hc @ Thu, 05 Jun 2008 13:47:31 -0000</title>
      <description>&lt;p&gt;hi,&lt;br /&gt;firstly thanks a lot for this piece of code!&lt;/p&gt;


	&lt;p&gt;i am about to use multiple UI.Ajax.Carousel, but even if i only try my code with a single one the following failure appears. (btw &amp;#8211; when i am working with multiple UI.Carousel &amp;#8211; the same way &amp;#8211; everthing works fine!)&lt;/p&gt;


	&lt;p&gt;first of all my code:&lt;br /&gt;&lt;pre&gt;
&lt;code&gt;
function initGroupCarousel(gc) {
    elementCount    = 41;
    elementSize    = 100;
    ulWidth        = (elementCount*elementSize);
    var gContent    = $$('#'+gc+' ul').first();
    gContent.setStyle({'width': ulWidth+'px'});

    gCarousel     = new Array;
    gCarousel[gc]    = new UI.Ajax.Carousel(gc, {
        url: "index.php", 
        elementSize: elementSize
    });
    [...]
}
&lt;/code&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;i surely also tried it with static width:4100px within the &lt;span class="caps"&gt;CSS&lt;/span&gt; file etc..&lt;/p&gt;


	&lt;p&gt;the failure:&lt;br /&gt;everything works fine in the beginning, but although i pass more=true the carousel will not send a new request after five successful ones. should be eight requests alltogether instead of just five. (also no messages via firebug!)&lt;/p&gt;


	&lt;p&gt;last response from index.php:&lt;br /&gt;&lt;code&gt;
{"html":"myHtmlOutput","from":"24","to":"29","more":true}
&lt;/code&gt;&lt;br /&gt;but it should go at least two steps further&amp;#8230;&lt;/p&gt;


	&lt;p&gt;any idea?&lt;br /&gt;any help would be appreciated.&lt;br /&gt;cheers,&lt;br /&gt;chris&lt;/p&gt;</description>
      <pubDate>Thu, 05 Jun 2008 13:47:31 -0000</pubDate>
      <guid isPermaLink="false">forums.prototype-ui.com:3:154:471</guid>
      <author>hc</author>
      <link>http://forums.prototype-ui.com/forums/3/topics/154</link>
    </item>
  </channel>
</rss>
