You could create a datatype Multiple Image Picker with the property editor: Media Picker (Umbraco.MediaPicker2) and check Pick multiple items, Pick only images and Disable folder select on.
Add the new datatype to the desired property on a document type.
Now you could pick multiple images.
You can access the images like: Model.Content.GetPropertyValue<IEnumerable<IPublishedContent>>("images").
Then you could loop through the images and with some js and css you could create a slider.
No image sliders for Umbraco 7?
I'm looking for a solution where i can have around 2/3 images selected so they can be sliding across my site.
So far the Umbraco solutions i've come across either were given up on, dont work, links no longer exist or maybe another issue.
Is there a way to slide images within Umbraco?
You could create a datatype
Multiple Image Picker
with the property editor:Media Picker
(Umbraco.MediaPicker2) and checkPick multiple items
,Pick only images
andDisable folder select
on.Add the new datatype to the desired property on a document type.
Now you could pick multiple images.
You can access the images like:
Model.Content.GetPropertyValue<IEnumerable<IPublishedContent>>("images")
.Then you could loop through the images and with some js and css you could create a slider.
Im using XSLT :-( which js/CSS are you referring to please?
is working on a reply...