Re: Does this new realse have option to display album depending on Categories.

  •  04-22-2010, 4:46 PM

    Re: Does this new realse have option to display album depending on Categories.

    Dear
     
    Please open file \CuteSoft_Client\Gallery\Layout\Explorer\Code.js,  locate "GalleryLayout.prototype.DrawUI=function _GalleryLayout_DrawUI()", Update:
    for(var i=0;i<this._categories.length;i++)
      {
       var c=this._categories[i];
       var div=this.CreateItemDiv(c,null,(c.Title||GalleryLocalize.DEFAULTCATEGORYNAME)+" ("+c.Photos.length+")",folderthumb,128,128);
       this.AttachItemEvent(container.appendChild(div));
      }
     
    to:
     
      for(var i=0;i<this._categories.length;i++)
      {
       var categoryID = this._categories[i].CategoryID;
       if(categoryID==1||categoryID==4)
       {
        var c=this._categories[i];   
        var div=this.CreateItemDiv(c,null,(c.Title||GalleryLocalize.DEFAULTCATEGORYNAME)+" ("+c.Photos.length+")",folderthumb,128,128);
        this.AttachItemEvent(container.appendChild(div));
       }
      }
     
    Regards,
    Eric
View Complete Thread