Search code examples
javascriptcsskendo-uimulti-selectkendo-multiselect

Align selected tags to right Kendo Multi-Select?


I am using kendo multi-select for implementing a tag based selector component. In that, by default any selected tag will appear left aligned. You can see the picture I have attached

enter image description here

Is there any way to configure them to right aligned??


Solution

  • Try adding this style in your page:

    .k-multiselect ul li.k-button {
        float:right;
    }
    

    Or use it as a class if you don't want to change the behaviour of all MultiSelect widgets in your page.