2 lists in one View
#31
(2017-05-27, 04:51)jurialmunkey Wrote: ...just use the following content in the song list (assuming the left album list is ID 50).

Code:
<content target="music">$INFO[Container(50).ListItem.DBID,musicdb://albums/,/]</content>

Thanks for this! I was wondering if it would be possible to have a list with all the songs for an artists without albums, I mean the second list should show all songs together for that artist...Huh I have tried several ways but no luck yet...

Thanks!
If I have helped you or increased your knowledge, please click the 'thumbs up' button to give thanks :)
Reply
#32
try this......
Code:
<content>musicdb://artists/$INFO[ListItem.DBID]/*</content>

This request goes to @DaveBlake

Please see too find solution how to use Action(Queue) in this list....
If we can use in this kind of lists, user will have option to Add song in playlist with single click.
I'll try all Functions from this page...and dont have clue how to use...need Kodi changes Sad
http://kodi.wiki/view/List_of_Built_In_Functions

Queue item working fine in song level....please find way to put in function Action(Queue) for playlist..

tnx
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#33
(2017-06-05, 20:49)Angelinas Wrote: try this......
Code:
<content>musicdb://artists/$INFO[ListItem.DBID]/*</content>

Thanks! Works like a charm Smile
If I have helped you or increased your knowledge, please click the 'thumbs up' button to give thanks :)
Reply
#34
(2017-06-05, 20:49)Angelinas Wrote: try this......
Code:
<content>musicdb://artists/$INFO[ListItem.DBID]/*</content>

Just one more, please Tongue From albums, is it possible to get a list with all the albums of that artist?

Thanks!
If I have helped you or increased your knowledge, please click the 'thumbs up' button to give thanks :)
Reply
#35
(2017-06-06, 09:50)manfeed Wrote:
(2017-06-05, 20:49)Angelinas Wrote: try this......
Code:
<content>musicdb://artists/$INFO[ListItem.DBID]/*</content>
Just one more, please Tongue From albums, is it possible to get a list with all the albums of that artist?
Thanks!
I don't think so, because there isn't any way that I'm aware of to get the artist's DBID from the albums view.
Arctic Fuse - Alpha now available. Support me on Ko-fi.
Reply
#36
(2017-06-06, 10:28)jurialmunkey Wrote: I don't think so, because there isn't any way that I'm aware of to get the artist's DBID from the albums view.
This is true but if Marcel want to help...all is posible.
Evan KodiMember can help, if add new ListItem.ArtistID...(this info is alredy is in DB).

Code for this is same as for artist...but last part is from helper script...
Code:
<content>musicdb://artists/$INFO[Window(Home).Property(SkinHelper.ListItem.artistid)]/</content>


need marcel to include new changes
https://github.com/marcelveldt/script.mo...ls/pull/10

working Smile
Image
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#37
(2017-06-05, 20:49)Angelinas Wrote: try this......
Code:
<content>musicdb://artists/$INFO[ListItem.DBID]/*</content>

This request goes to @DaveBlake

Please see too find solution how to use Action(Queue) in this list....
If we can use in this kind of lists, user will have option to Add song in playlist with single click.
I'll try all Functions from this page...and dont have clue how to use...need Kodi changes Sad
http://kodi.wiki/view/List_of_Built_In_Functions

Queue item working fine in song level....please find way to put in function Action(Queue) for playlist..

tnx


I've pinged Dave in case he hasn't spotted this, fyi a post at https://forum.kodi.tv/forumdisplay.php?fid=263 is probably more likely to gain Dave's attention.
Reply
#38
(2017-06-05, 20:49)Angelinas Wrote: This request goes to @DaveBlake

Please see too find solution how to use Action(Queue) in this list....
If we can use in this kind of lists, user will have option to Add song in playlist with single click.
I'll try all Functions from this page...and dont have clue how to use...need Kodi changes Sad
http://kodi.wiki/view/List_of_Built_In_Functions

Queue item working fine in song level....please find way to put in function Action(Queue) for playlist..

tnx

(2017-06-06, 15:49)jjd-uk Wrote: I've pinged Dave in case he hasn't spotted this, fyi a post at https://forum.kodi.tv/forumdisplay.php?fid=263 is probably more likely to gain Dave's attention.
Yeap, as I said I don't follow the skinning form, just not enough hours in the day, so to reach me post in Music Support.

Do I understand correctly: the issue is that "add to queue" and "play" are usually available via the context menu, but that only applies to the node, not the extra child panels. So you want a way to say add to queue for an item.

How about using JSON API? IMO Kodi already has too many ways to do the same thing, but I am not familiar with the built in functions either.
Reply
#39
Would be even better if you added a third list for A-Z letters, like a jukebox Smile

That would make browsing music amazing!
Reply
#40
(2017-11-21, 12:57)docwra Wrote: Would be even better if you added a third list for A-Z letters, like a jukebox Smile

That would make browsing music amazing!

You can do this with skin helper
https://github.com/marcelveldt/script.sk...habet-Jump
Arctic Fuse - Alpha now available. Support me on Ko-fi.
Reply
#41
(2017-11-21, 21:08)jurialmunkey Wrote:
(2017-11-21, 12:57)docwra Wrote: Would be even better if you added a third list for A-Z letters, like a jukebox Smile

That would make browsing music amazing!

You can do this with skin helper
https://github.com/marcelveldt/script.sk...habet-Jump 
Great improvement, I just wish it was part of the Kodi base code so everyone could benefit.
Reply
#42
I still hope one day we can acheive this in the music section:

Image
Reply
#43
This is a really cool idea!
I've got a doublelist view going. (Artists/Albums)

I've got Artist view covered with.

[SECOND LIST]
Quote:<onclick>PlayMedia($ESCINFO[ListItem.FolderPath],isdir)</onclick>
...
<content target="music">$INFO[Container(xx).ListItem.DBID,musicdb://artists/]</content>
But..

Album view.

[SECOND LIST]
Quote:<content>$INFO[Container(xx).ListItem.DBID,musicdb://albums/]</content>
It works, but just for the selected track.
That's cool if that's all we can do, I can live with that!
Would be nice to start playing from that point in the album to the end.
No biggie. Smile
Reply
#44
Looking back in this thread..
Look's like this was not the first request for this.
Just hoping someone had a xml/Boolean/Builtin fix. Smile
Reply
#45
This post edit system sucks!
Smile
Reply

Logout Mark Read Team Forum Stats Members Help
2 lists in one View1