This topic is locked

Accordion Lists or Grouped List

9/17/2018 4:58:14 PM
PHPRunner General questions
B
Boyd author

I am trying to create either an accordion list or a grouped list. I have data that looks like this:
|Group|Test |

|-----|------|

|A |Test1 |

|A |Test2 |

|A |Test3 |

|B |Test4 |

|B |Test5 |

|C |Test6 |
I have the tests being selected in a form with check-boxes where they can select multiple tests. But because there are a large number of tests, the users would like to see them either in an accordion style:
> A

> B

> C
Where you click on the letter and it expands:

  • A

    Test 1

    Test 2

    Test 3

    > B

    > C
    Or at least grouped:
    A

    Test1

    Test2

    Test3

    B

    Test4

    Test5

    C

    Test6
    Any ideas on how to do this?
    Thanks!

admin 9/17/2018

How's about using Master-Details?

B
Boyd author 9/18/2018



How's about using Master-Details?



Tried that, but that is not what the user wanted in the end. They just want a series of check boxes that they can pick from to select the tests they want.

admin 9/18/2018

First question was about grouping and expanding/collapsing groups and second is about some checkboxes. Doesn't make any sense to me.