Is it possible to make a treeview visible when a ListView is enabled?
This is useful if you need to change multiple pages quickly. With a list view enabled you have to go back to the overview (parent node) to look up the next page. In the treeview you could click this directly.
I was hoping it would be a simple override of the hidden children in the treeview (the functionality is already present) :-)
When there are a lot of children and you want to update each one of them. Then you can go to the next page (paging) in a listview to select the appropriate node. When you are done editing and want to go to the next node (sibling), you must select the parent node in de treeview to see all the children (in a list view) again use paging or filtering to find the next one to edit.
Enable ListView and TreeView together
Is it possible to make a treeview visible when a ListView is enabled?
This is useful if you need to change multiple pages quickly. With a list view enabled you have to go back to the overview (parent node) to look up the next page. In the treeview you could click this directly.
Hi Robbie,
if you enable the
ListView
then you won't have aTreeView
visible in the content section and I don't think there is a possibility to have both.Can you be more specific about the go back to the overview ( parent node ) because its not totally clear.
Thanks
/Michaël
Hi Michaël,
I was hoping it would be a simple override of the hidden children in the treeview (the functionality is already present) :-)
When there are a lot of children and you want to update each one of them. Then you can go to the next page (paging) in a listview to select the appropriate node. When you are done editing and want to go to the next node (sibling), you must select the parent node in de treeview to see all the children (in a list view) again use paging or filtering to find the next one to edit.
/Robbie
Hi Robbie,
yes you are correct, it would be a nice PR when the paging and filtering of the listview is still present after going to a child node.
Maybe there is already an issue available on http://issues.umbraco.org for this, if not maybe you can add it there.
Hope this helps.
/Michaël
This is possible by keeping the Listview disabled and creating a tab and listview property. So both will work at the same time
Nice one! #h5yr
/Michaël
Hi Marcio,
Super simple!!! Exactly what i needed.
is working on a reply...