2013-10-05 33 views
0

嘿,我有一個PHP + MySQL + jQuery的功能是阻止同位素 部分,我的工作就好了,你可以在這裏看到Expressionengine矩陣AJAX分頁

http://egyptianartsgroup.com/videos.php

我想這樣做在EE矩陣,但即時通訊問題與阿賈克斯分頁

繼承人我的代碼輸出矩陣行到同位素

<div id="container" class="photos clearfix variable-sizes"> 
    {exp:channel:entries channel="featured" url_title="main-featured" limit="1"} 
    {featured_items search:active="Yes" sort="asc" limit="5" offset="0"} 
    {if type == "Video"} 
     <div class="photo video"> 
     {thumb_image} 
     <img src="{path}_thumbnails/{filename}.{extension}" /> 
     {/thumb_image} 
     <a href="{vlink}" class="featuredVideoIcon" t = "video" title="{overlayed_title}"></a> 
     <a href="{vlink}" class="FeaturedTitleLink" t = "video" title="{overlayed_title}"><h2 class="FeaturedTitle">{overlayed_title} -- {row_count} of/{total_rows}</h2></a> 
     </div> 
    {if:else} 
    <div class="photo image"> 
      {thumb_image} 
      <img src="{path}_thumbnails/{filename}.{extension}" /> 
      {/thumb_image} 
      <a class="featuredEnlargIcon" href= "{thumb_image}" title="{overlayed_title}" t = "image"></a> 
      <a class="FeaturedTitleLink" href= "{thumb_image}" t = "image" title="{overlayed_title}"><h2 class="FeaturedTitle">{overlayed_title} -- {row_count} of/{total_rows}</h2></a> 
      </div> 
    {/if} 

    {/featured_items} 

    {/exp:channel:entries} 
</div> 

任何想法,以獲得ajax分頁工作?

回答