Kodi Community Forum

Full Version: [Question] Container Sort Method
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm having a bit of trouble finding any documentation on container sort methods. I've figured out Container.NextSortMethod, Container.PreviousSortMethod, and Container.SortDirection. But i can't figure out how to pull out a related info label so I can simply write something like a button who's label changes to reflect the currently chosen sorting method.

Code:
<control type="button">
    <onclick>Container.NextSortMethod</onclick>
    
    <description>Sort Order</description>
    <label>$INFO[sortOrder]</label>
    
    <texturenofocus></texturenofocus>
    <texturefocus></texturefocus>
</control>
Container.SortMethod and Container.SortDirection

If in doubt, see GUIInfoManager.cpp

Cheers,
Jonathan
Thanks jmarshall!
Just for clarification - I took a look at GUIInfoManager.cpp and I couldn't find anything to return the current sorting direction to an info label. Did I miss it or does it not exist?

Edit:
So I figured out that using a togglebutton with an label and altlabel performs the function of what I need quite well. Thanks for the help again.