Hi ALL
Ok, I started with the 2 options :
A) sort_columns_at_startup = [('authors', 0), ('title', 0)]
B) sort_columns_at_startup = [('title', 0), ('authors', 0)]
A got me the titles within authors that was the basis on my requirement.
I then added series :
sort_columns_at_startup = [('authors', 0), ('series', 0) , ('title', 0)]
and this gives me exactly what I wanted, mimicking clicking table column headers Title, Series, Authors manually in turn.
Reverse order was the key, thanks to theducks for mentioning that.
Thanks Both of You for your help with this.
|