Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Eldimar Mariano Fonseca Marques Junior 2 posts 22 karma points
    Mar 02, 2012 @ 02:36
    Eldimar Mariano Fonseca Marques Junior
    0

    list of images in umbraco 5

    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 @item.umbracoFile;
        int id Convert.ToInt32(@item.urlSlide);                                        
         <li><href="@library.NiceUrl(id)"><img src="@item.umbracoFile" alt="@item.tituloSlide" /></a></li>                                       
        }
      </ul>
    }

    How to do it in umbraco 5?

     

    thanks

  • organic 108 posts 157 karma points
    Mar 05, 2012 @ 21:52
    organic
    0

    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>
    }
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies