vue-form-generator icon indicating copy to clipboard operation
vue-form-generator copied to clipboard

have multiselect and options get wit ajax_function

Open mohsenmehri6101 opened this issue 4 years ago • 0 comments

hi . why this is not worked ( props 'multiple' and 'searchable' not worked .just 'noneSelectedText' worked) : `

schema: {
                fields: [
                    {
                        name: 'selector_',
                        type: 'select',
                        label: 'type',
                        values: function () {
                            return [
                                {name: 'Vue.js', id: 'JavaScript'},
                                {name: 'Rails', id: 'Ruby'},
                                {name: 'Sinatra', id: 'Ruby'},
                                {name: 'Laravel', id: 'PHP'},
                            {name: 'Phoenix', id: 'Elixir'}
                        ]
                    },
                    selectOptions: {
                        noneSelectedText: 'pleace select',
                        multiple:true,
                        searchable:true
                    }
                }
            ]
            }

mohsenmehri6101 avatar Jun 18 '21 16:06 mohsenmehri6101