:: pepysDHTMLX :: myFolders.setItemType("fthumbs");

Hi,



I’ve started to use dhtmlxFolders, but I want to use for thumbs my pictures, not created using something like thumbs_creator.php. If I have a folder /thumbs, can I use those pictures to display in my folder grid?

You can adjust how src attribute defined in fthumbs.xsl
Currently it has
<xsl:attribute name=“src”><xsl:value-of select="$thumbs_creator_url"/>?img=<xsl:value-of select="$photos_rel_dir"/><xsl:value-of select="./@name"/>&width=94&height=94</xsl:attribute>

Which can be replaced with
<xsl:attribute name=“src”><xsl:value-of select="./@thumb"/></xsl:attribute>

With such code, it will use thumb attribute in XML, as path to thumbnail image.