Search In
Learn from 350 other Umbracians at the annual Umbraco Conference - CodeGarden '13. More than twenty high quality sessions, open spaces, hackathons and social events you'll remember. Not to be missed! Less than 25 tickets left - get yours now!
In umbraco 4.7.1 I created a list of images according to the code below:
@{ dynamic mediaItem = new DynamicMedia(1056); <ul id="slides"> @foreach (var item in @mediaItem.Children ) { var t = @item.umbracoFile; int id = Convert.ToInt32(@item.urlSlide); <li><a href="@library.NiceUrl(id)"><img src="@item.umbracoFile" alt="@item.tituloSlide" /></a></li> } </ul>}
How to do it in umbraco 5?
thanks
Take a look at the DevDataset sample that you can choose when installing Umb 5. From that, I got:
@{ var sliderItems = Model.DescendantContent() .Where(x => x.ContentType.Alias == "sliderItem") .OrderBy(x => x.SortOrder);}@foreach (var sliderItem in sliderItems){ <li class="slider"> <a href="@sliderItem.NiceUrl()">@sliderItem.Field("title")</a> <a class="thumb" href="@Umbraco.GetMediaUrl(sliderItem.Id, "image")" title=""> <img src="@Umbraco.GetMediaUrl(sliderItem.Id, "image")" width="50" height="35" alt="" /> </a> </li>}