My listview is for a doctype that has a “Umbraco.MultiNodeTreePicker” field. Is it
possible to configure the list view to use this field as a display column, but
display the nodename rarther than the id? thanks
the listview feature in the umbraco backend is awesome!
But how do i display the listview in a template, so i can see it in the frontend website?
I should be able to access the property by its alias "layout" and then get the columns for example. How do i get the columns?
var layout = CurrentPage.Content.GetProperty("layout");
var columns = layout.Columns;
listview - columns displayed
My listview is for a doctype that has a “Umbraco.MultiNodeTreePicker” field. Is it possible to configure the list view to use this field as a display column, but display the nodename rarther than the id? thanks
currently, the listview column will display the picked ids from the content picker e.g. 1229,1235
Hello,
I don't that this is currently possible. You could add a feature request for it here: http://issues.umbraco.org/dashboard#newissue=yes
Jeroen
Hello,
the listview feature in the umbraco backend is awesome!
But how do i display the listview in a template, so i can see it in the frontend website? I should be able to access the property by its alias "layout" and then get the columns for example. How do i get the columns?
is working on a reply...