can u make example for Multiple selection without pressing ctrl button

can u make example for Multiple selection without pressing ctrl button

stancaballerostancaballero Posts: 29Questions: 9Answers: 0

label: "Participant:",
name: "tbl_employee_master[].idnumber",
type: "datatable",
multiple: true

This question has an accepted answers - jump to answer

Answers

  • colincolin Posts: 15,142Questions: 1Answers: 2,586
    Answer ✓

    If you use this example as a basis, adding this allows you to multi-select without the control button:

                }, {
                    label: "Permissions:",
                    name: "permission[].id",
                    type: "datatable",
                    multiple: true,
                    config: {
                        select: {
                            style: 'multi'
                        }
                    }
                }
    

    Colin

  • stancaballerostancaballero Posts: 29Questions: 9Answers: 0

    Thank you very much :smile:

Sign In or Register to comment.