[xwiki-users] stylesheet extension challenge

2014-02-28 Thread Gerritjan Koekkoek
Hi, Would like to set a backgroundImage dynamically (I have attached 25 jpg files to a page) If I add this velocity code into my wiki page it works! {{velocity}} [[image:Photos.CdLSWorldbanners@${mathtool.random(1, 25)}.jpg||width=100%]] {{/velocity}} If I add this same code in a stylesheet

Re: [xwiki-users] stylesheet extension challenge

2014-02-28 Thread Marius Dumitru Florea
The CSS is cached, so you get a different image only if you do a page reload with force clear cache. If you want a different image when you reload the page then you have to either keep displaying the image from the page content or use JavaScript. On Fri, Feb 28, 2014 at 6:06 PM, Gerritjan

Re: [xwiki-users] stylesheet extension challenge

2014-02-28 Thread gerritjankoekk...@gmail.com
The initial load is not happening The images do not need to change on this page... If i Have different pages with different images it is ok Verstuurd vanaf mijn iPhone Op 28 feb. 2014 om 17:43 heeft Marius Dumitru Florea mariusdumitru.flo...@xwiki.com het volgende geschreven: The CSS is

Re: [xwiki-users] stylesheet extension challenge

2014-02-28 Thread Marius Dumitru Florea
$doc.getAttachmentURL is used for files attached to $doc, i.e. the current document, so you either use $doc.getAttachmentURL('fileName') or $xwiki.getAttachmentURL('Space.Page', 'fileName') Hope this helps, Marius On Feb 28, 2014 6:07 PM, Gerritjan Koekkoek gerritjankoekk...@gmail.com wrote: