So I'm using the "standardized track listing" in this stackoverflow question, and which the guidelines instruct developers to use.

I can easily remove fields from each entry in the track listing with css (just display:none, etc), and likewise alter the general appearance. However, I would like to add another field to each entry.

As an example, see the "Top Lists" feature in your spotify client (for me this is the second item under APPS). These lists look mostly like normal playlists (and of course, operate as such too), but each element has a number next to it, and the format is a little bit different.

Would it be possible to do this in my own application, without totally reinventing the wheel?

I can do something like: $(".sp-list a").each(function(){$(this).append("foo")}) but that will only affect the currently visible tracks(ish). If part of the playlist scrolls out of view, those tracks are not affected. Also, if Spotify decides to redraw any part of the list, which does happen (for example if I scroll the affected items out of view and play a track), I lose the change. So this is not especially viable/clean.

Thoughts?

link|improve this question
Also, I guess as a follow-up (specifically directed to you spotify employees out there): If I do reinvent the wheel--ie, use the classes, etc that a real playlist uses, but with my own wrapper to let me mess with it-- (which is actually pretty easy now that I've messed around a bit), is that kosher? Or, is that a recipe for rejection? – jacobe Jan 12 at 20:07
feedback

1 Answer

up vote 1 down vote accepted

As I were on a meeting with Spotify earlier today I asked them about this question. There is no option to add elements to the list.node at this moment but they said they will look into the "problem".

Until then you will have to add your elements outside the list.node, either you could put it on top (together with position: absolute;) or you could put it before or after (with float) if your element should be the first or last column.

link|improve this answer
Thanks for the response...Did they give any indication as to whether or not using a faux-list.node that otherwise looks as its supposed to would be kosher or not? – jacobe Jan 12 at 21:03
They said that it's ok to make custom solutions where it can increase the user experience and make the app more functional. But each individual app (and custum solutions) will be reviewed, so I recommend you to talk with Spotify about your special needs so your app will be approved. – Kristoffer Svanmark Jan 13 at 10:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.