Fredmental
Fredmental

Reputation: 565

What are the differences between select2, and select2 full?

Right now I am wondering what the full differences between select2, and select2 full are. I can not find a webpage that goes into details about them in the docs. The docs just mention compatability modules, and the mousewheel plugin, but there's also new config options for dropdownCssClass as well so I find this a little confusing. I was going to adopt it to use the dropdownCssClass config option, but I want to know what else I’ll get from it. I'm also curious if select2 full is being as actively maintained as select2, but can't find that information on that as well

Upvotes: 10

Views: 5394

Answers (1)

Binar Web
Binar Web

Reputation: 943

Standard (select2.js / select2.min.js)

This is the build that most people should be using for Select2. It includes the most commonly used features.

Full (select2.full.js / select2.full.min.js)

You should only use this build if you need the additional features from Select2, like the compatibility modules or recommended includes like jquery.mousewheel

If you want to read more, you can find it on select2 official website.

Upvotes: 4

Related Questions