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
Is there any way to configure them to right aligned??
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.