I am working on a simple carousel but want the user to select three images using the Digibiz Advanced Media picker. I am using Umbraco 4.7.11 I have probably done something really silly but this XSLT isn't working for me. Can anyone help?
However I am not 100% sure this is what you are wanting based on the fact you are using DAMP.
I would suggest adding the following so you can see the variable value - this may help provide direction (if needed)
<xsl:variable name="bannerImages" select="umbraco.library:GetXmlNodeById($currentPage/@id)/bannerImages/*"/> <!-- Add this bit in below your variable and refresh the page --> <textarea> <xsl:copy-of select="$bannerImages"/> </textarea>
Also noticed the following - it may not be an issue but thought I'd mention it now just in case (maybe help prevent further frustrations)
var $active = $('#banner IMG.active');
The "IMG" might be better as "img" just to be semantically correct with your html output / case sensitivity
Displayin Images from the carousel
Hi all
I am working on a simple carousel but want the user to select three images using the Digibiz Advanced Media picker. I am using Umbraco 4.7.11 I have probably done something really silly but this XSLT isn't working for me. Can anyone help?
Thanks in advance
Natasha
Hi Natasha
Think you need to change the following line as you are outputting the node name within a "for-each" loop
Should this be the following?
However I am not 100% sure this is what you are wanting based on the fact you are using DAMP.
I would suggest adding the following so you can see the variable value - this may help provide direction (if needed)
Also noticed the following - it may not be an issue but thought I'd mention it now just in case (maybe help prevent further frustrations)
The "IMG" might be better as "img" just to be semantically correct with your html output / case sensitivity
Hope the above helps
Cheers, Nigel
is working on a reply...