You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that the add columns was being placed below the selected columns. to fix this I simply changed Line 46 of ui.muiltiselect.js from:
this.container.width(this.element.width()+1);
to:
this.container.width(this.element.width()+2);
The text was updated successfully, but these errors were encountered:
I found that the add columns was being placed below the selected columns. to fix this I simply changed Line 46 of ui.muiltiselect.js from:
this.container.width(this.element.width()+1);
to:
this.container.width(this.element.width()+2);
The text was updated successfully, but these errors were encountered: