hello and thx for a nice module
my problem right is that im trying to create a list of subjects using checkboxes.
if i select several subjects views will "create a new header" form them.

right now its like this:
History (checked) Math (checked) for user1
History (unchecked) Math (checked) for user2

and its will be displayed as

History, Math
user1

Math
user2

but i would like to have it like this (since user1 has both history and math)

History
user1

Math
user1
user2

any ideas where the problem might be?
not sure if it is with views or if this module just creates a new header depending on what u have checked...

thx in advance

Comments

johnhanley’s picture

Category: support » feature
Status: Active » Closed (won't fix)

Yeah, this is a known issue AND limitation of the module because all the checkbox (i.e. multiple choice) selections are stored in the same database field as comma-delimited values. There might be a better/different way to go about this, but this design decision was made in order to maintain compatibility with the core profile module data structure. So the output of your View is correct, but understandably not what you need. It might be possible to split the values up with a custom Views handler, but I have neither the time nor interest to explore this. Code contributions gladly accepted.