search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

how to select multiple value in form dropdown

Asked by Anonymous
1 year ago.

how to select multiple value in form dropdown using DayPilot.Modal.form.

code :

 const form = [          
          {
            name: 'Start Date',
            id: 'start_date',
            type: 'date',
            dateFormat: 'd/M/yyyy',
          },
          {
            name: 'End Date',
            id: 'end_date',
            type: 'date',
            dateFormat: 'd/M/yyyy',
          },  
          {
            name: "Choose mission task", 
            id: "Choose_mission_task", 
            options: tsk,
          },
          {
            name: "Work Shift", 
            id: "work_shift", 
            options: listed_shifts
          }
        ];
Answer posted by Dan Letecky [DayPilot]
1 year ago.

Unfortunately, it is not possible to select multiple options from the drop down list (type: "select" or type: "searchable"). I recommend using a set of checkboxes instead (type: "checkbox").

Comment posted by Anonymous
1 year ago.

thanks Dan

Comment posted by Las Mark
11 months ago.

is it possible to have a dropdown list but the option items is from database

Comment posted by Las Mark
11 months ago.

if possible, how can i do that. Thank you so much

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.