|
Description: |
h1. Reproduction # Create a book # Create 2 versions (v1, v2) # Create two libraries (libA, libB), each with at least on version (libA/BV1) # In the administration UI for libraries of the book, add each library # You will see something like this:
||Title||Library||Library Version|| |V1|LibA|libAV1| |V1|LibA|libAV1| |V2|LibA|libAV1| |V2|LibA|libAV1|
instead of:
||Title||Library||Library Version|| |V1|LibA|libAV1| |V1|LibB|libBV1| |V2|LibA|libAV1| |V2|LibB|libBV1| +*Important note:*+ the objects are well set in each version pages, it's just the display which have a problem h1. Solution
Default LiveData is for displaying pages, not different objects of the same class in the same page.
A custom result for the LiveData should be provided to display one object per line .
It would be best if the Library Version could be changed in place. |
|