This is a migrated thread and some comments may be shown as answers.

Use Bootstrap Multiselect as Custom Editor in Kendo Grid

1 Answer 84 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Andy
Top achievements
Rank 1
Andy asked on 27 Oct 2016, 03:47 PM

I am trying to use a MultiSelect as a custom editor for one of the fields in a kendo grid. I have something like below now

   
    var multiSelectEditor = function (container, options) {

              $('<select data-bind="multiValue:' + options.field + '"/>')

                        .appendTo(container)

                        .kendoMultiSelect({

                        suggest: true,

                        dataSource: options.values,

                        valuePrimitive: true

               });

    };

   but instead of the KendoMultiSelect, I want to use the Bootstrap Multiselect. How can I go about to implement this? Thanks

                       

1 Answer, 1 is accepted

Sort by
0
Vladimir Iliev
Telerik team
answered on 31 Oct 2016, 08:08 AM
Hi Andy,

Please note that integrating third-party widgets as custom editors in the Grid falls outside the scope of this support service as it covers the build-in widgets only.  For such custom solutions you can check our professional services

Regards,
Vladimir Iliev
Telerik by Progress
 
Build rich, delightful, *native* Angular 2 apps with Kendo UI for Angular 2. Try it out today! Kendo UI for Angular 2 (currently in beta) is a jQuery-free toolset, written in TypeScript, designed from the ground up to offer true, native Angular 2 components.
 
Tags
Grid
Asked by
Andy
Top achievements
Rank 1
Answers by
Vladimir Iliev
Telerik team
Share this question
or