Set Sequence(Re-Order) in content page list Back office Umbraco 8.1.0
Hello All,
Does anyone idea about how to apply sequence(Re-order) in the content list page in the back office?. so I can display front-list base on the sequence I get.
Your flow is right I can drag and drop to set order but after save it can`t display effect in the list. How I can identify this list display as rearrange sequence other than I go to action and click on the Sort button.
In front-end side is there any code to get sequence order list in the template and display whatever sequence we set in the back office?
Set Sequence(Re-Order) in content page list Back office Umbraco 8.1.0
Hello All,
Does anyone idea about how to apply sequence(Re-order) in the content list page in the back office?. so I can display front-list base on the sequence I get.
Please refer attached screenshot for reference.
http://prntscr.com/orfzsx
If you have an idea make custom code logic implementing and do the sequence in the list then and then it should appreciate in the back office.
Thanks in advance.
Hi Mihir,
You need to goto top right Action button and click on Sort button.
Then just click on Name column and it will sort based on it and Save it.
Cheers, Shaishav
Hi Shaishav,
Your flow is right I can drag and drop to set order but after save it can`t display effect in the list. How I can identify this list display as rearrange sequence other than I go to action and click on the Sort button.
In front-end side is there any code to get sequence order list in the template and display whatever sequence we set in the back office?
You can drag & drop or even click on Name to reorder.
In front-end, we can do sorting .OrderBy("SortOrder"); or .OrderBy(x=>x.SortOrder);
is working on a reply...