Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
690
Mobile ListView : mutli-level
posted

Hi,

How we can desactive the auto multi-level (one property/Css ?) ?

I've an IQueryable List of object and for each object I have a List of an other object.

If I do not configure Childlayout, the multi-level render my objects in the ListView (OK) and render too the childs (KO) and then override the NavigateUrlKeyFor (to an url.action) property of my list.

Parents
No Data
Reply
  • 690
    posted

    Hi, there is the "data-initial-data-bind-depth" property.

    How can I use that property with the Html Helper ?

     

    <%= Html.InfragisticsMobile().ListView<Ecurie>()
                    .DataSource(Model)
                    .ID("myListView") ...

Children