-
Notifications
You must be signed in to change notification settings - Fork 431
Major version 3.0 Removal of jQueryUI requirement (replaced by SortableJS)
Bye Bye jQueryUI... welcome SortableJS
Great news we no longer require jQueryUI in SlickGrid, we removed all associated code and replaced it with SortableJS. But just to be clear, you can still use jQueryUI if you wish to (there are still plenty of Examples using it), the main difference is that it is now totally optional, however SortableJS becomes the new required dependency so make sure to install it. We also created a new file (new requirement) slick.interactions.js
(much smaller and supports touch) which is replacing jquery.mousewheel.js
and jquery.event.drag-2.3.0.js
which are no longer required.
Bonus, we now also include minified versions (with source maps) of all JS/CSS files, these new files will be located (and published) in the dist/
folder and will provide much smaller file sizes.
- replace jQueryUI with SortableJS
- replace
jquery.event.drag-2.3.0.js
&jquery.mousewheel.js
with a new fileslick.interactions.js
- note that the
jquery.event.drag
replacement should work for 90% of the use cases, the exception might be when you need to usejquery.event.drop-2.3.0.js
, in other wordsslick.interactions.js
will be used unless you purposely loadjquery.event.drag
which would then take priority - as for
jquery.mousewheel.js
it is no longer used anywhere, it was entirely replaced withslick.interactions.js
- note that the
- add
dist/
folder to serve minified JS/CSS files
Why replace jQueryUI with SortableJS?
Prior to this new version, we required jQueryUI to be installed, that was even for a basic grid, but the fact was that the only jQueryUI feature we needed in SlickGrid was jQueryUI - Sortable for column reordering. Considering the fact that we required the user to download jQueryUI at 281Kb (js+css) just to get column reordering, we figured it was a rather large request, don't you think? Some of you might reply, wait a minute that seems incorrect since we were also using jQueryUI Date Picker, Slider, Autocomplete & Draggable... which we could reply: indeed that was true but only partially and that was when the user decided to include Slick.Editors
into their grid. Other reasons to replace jQueryUI could be that jQueryUI is barely maintained and is now quite outdated. Please note that you can still use jQueryUI if you wish, but it no longer be required by default (however SortableJS is the new default).
- old and outdated, barely supported and rather large (probably because it was written when IE5 was a thing)
- it does not support Touch that well (mobile devices)
- it is rather large at 250Kb (min.js) + 31Kb (min.css)
- much smaller at 44Kb (
min.js
doesn't require any css) - touch friendly (mobile devices)
- much smoother UX and better performance
- written in pure JS without any dependencies
The biggest drop in size can be seen when creating a basic grid since we replaced jQueryUI
, jquery.event.drop-2.3.0
and jquery.mousewheel.js
with SortableJS and slick.interactions.js
which itself is a tiny 250 lines of code (-50 lines of comments) that will take care of column resize and dragging. On top of the huge drop in size, it also works with touch and will work with even cell/row selection (dragging) on touch devices.
Creating basic grids is where we get the biggest drop in file size (6.5x smaller) as you can see below (see the section on the right)
before | size (js+css) | after | size | notes |
---|---|---|---|---|
jQueryUI | 250+31Kb | SortableJS | 44Kb | |
jquery.event.drag-2.3.0 |
10Kb |
slick.interactions.js (new) |
4Kb | if jQuery.event is loaded it will use its drag&drop instead of the one from slick.interactions.js
|
jquery.mousewheel.js |
3Kb | " " | no longer used anywhere, you should remove it from your imports | |
Total | 294Kb | 48Kb |
When creating grids with Editors, you can see below a list of possible alternative 3rd party libs (which are all written in pure JS) which you can use to replace some or all of jQueryUI features (like Editors), note that these are all just suggestions and you can still choose anything else or keep using jQueryUI. The sizes shown below are all minified versions (min.[js|css]
) and as you can see if we add them all up, it is still much smaller in size (291kb vs 115kb which is 2.5x smaller). We can only assume this to be even smaller with GZip, even though we don't have the stats for that. Note again that nothing stops you from still using jQueryUI for Editors if you find that simpler.
before | size | after (with suggestions) | size (js+css) | notes/demo |
---|---|---|---|---|
jquery.event.drag-2.3.0 |
10Kb |
slick.interactions.js (new) |
4Kb | always required |
jquery.mousewheel.js |
3Kb | " " | ||
jQueryUI | 250+31Kb | SortableJS | 44Kb | |
.. UI Date Picker | Flatpickr | 49Kb+15Kb (js+css) |
Slick.Editors.Flatpickr / online demo
|
|
.. UI Slider | pure JS | < 10 lines of code | pure JS / online demo | |
.. UI Autocomplete | Kraaden Autocomplete | 5Kb+1Kb (js+css) | no Editor created, see note below | |
Total | 294Kb | 118Kb |
-
NOTE We modified
Slick.Editors
to supportFlatpicker
but we did not include the Autocomplete since it's not used as often (you'll have to implement it yourself). However, if you wish to see a demo of all of these suggested Editors alternatives, you can take a look at Slickgrid-Universal - Example 4 which implemented them all and uses SlickGrid.
So now you might think, great jQueryUI is no longer required so when will jQuery be dropped? Well... that's a whole different story, it would take a considerable amount of time and work to rewrite everything in pure JavaScript. Obviously the first step was to remove jQueryUI, which we just did, and the next step would be to rewrite all of jQuery code in pure JS but that is an even greater task especially for an Open Source project. If you want to get involved that would be awesome, and even if we don't tackle this, we still managed to lower the SlickGrid library footprint size and improve the user experience by adding libs that are more modern and also work a lot better with mobile/touch devices. If you're really concerned about jQuery's size, then you could try jQuery slim version or simply wait for jQuery 4.x which is expected to be much smaller (drops legacy browsers support) and is expected to be released in the next few months as mentioned in this jQuery 4.x post.
Please note that the Slick.DraggableGrouping
Plugin had its CSS file in the wrong folder (it was under /controls
instead of /plugins
where the JS file is located), this is now fixed and both the plugin and its CSS are now under the same plugins/
folder location.
- <link rel="stylesheet" href="../controls/slick.draggablegrouping.css" type="text/css"/>
+ <link rel="stylesheet" href="../plugins/slick.draggablegrouping.css" type="text/css"/>
- <script src="../lib/jquery-ui.min.js"></script>
- <script src="../lib/jquery.event.drag-2.3.0.js"></script>
- <script src="../lib/jquery.mousewheel.js"></script>
+ <script src="https://cdn.jsdelivr.net/npm/sortablejs/Sortable.min.js"></script>
+ <script src="../slick.interactions.js"></script>
This new CSS file is mainly for demo purpose and the icons are expected to be different in every browser, which is why we provided this as a separate and optional file, in fact we strongly recommend that you use a separate icons library like Font-Awesome or anything similar.
- <link rel="stylesheet" href="../css/smoothness/jquery-ui.css" type="text/css"/>
<!-- optional unicode icons -->
+ <link rel="stylesheet" href="examples-unicode-icons.css" type="text/css"/>
Sliders are super easy to convert into pure JS, a couple lines of code change HTML + JS will do it
- <div style="width:100px;display:inline-block;" id="pcSlider"></div>
+ <input style="width:100px;display:inline-block;" id="pcSlider" type="range" min="1" max="100" value="1">
- $("#pcSlider,#pcSlider2").slider({
- "range": "min",
- "slide": function (event, ui) {
+ var slider = document.getElementById("pcSlider");
+ var sliderCallback = function() {
// ...
- if (percentCompleteThreshold != ui.value) {
- percentCompleteThreshold = ui.value;
+ if (percentCompleteThreshold != this.value) {
+ percentCompleteThreshold = this.value;
}
}
});
Alternative lib for Slick.Editors
(ie, Flatpickr)
For a date editor, we suggest the use of the 3rd party lib Flatpickr which we added a new dedicated editor as Slick.Editors.Flatpickr
and if you prefer to use something, the choice is yours and you can simply extend Slick.Editors
to your needs.
<head>
- <link rel="stylesheet" href="../css/smoothness/jquery-ui.css" type="text/css"/>
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
</head>
- <script src="../lib/jquery-ui.min.js"></script>
- <script src="../lib/jquery.event.drag-2.3.0.js"></script>
- <script src="../lib/jquery.mousewheel.js"></script>
+ <script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
+ <script src="https://cdn.jsdelivr.net/npm/sortablejs/Sortable.min.js"></script>
+ <script src="../slick.interactions.js"></script>
<script src="../slick.editors.js"></script>
<script>
var columns = [
- {id: "start", name: "Start", field: "start", minWidth: 60, editor: Slick.Editors.Date, sortable: true},
+ {id: "start", name: "Start", field: "start", minWidth: 60, editor: Slick.Editors.Flatpickr, sortable: true},
]
</script>
You can also optionally use the new minified versions (we also included source maps for debugging purposes)
+ <script src="https://cdn.jsdelivr.net/npm/sortablejs/Sortable.min.js"></script>
+ <script src="../dist/slick.interactions.min.js"></script>
+ <script src="../dist/slick.editors.min.js"></script>
Some user might prefer to load SortableJS with import
or require
(instead of <script>
), that works too but you might also need to assign it to the global window
object to make Sortable
available in SlickGrid. You might have other ways to assign it globally with WebPack or Rollup, just remember to make it available globally so that it's available in SlickGrid.
import 'slickgrid/slick.core';
import 'slickgrid/slick.grid';
import Sortable from 'sortablejs';
// or via require()
// const Sortable = require('sortablejs');
window.Sortable = Sortable; // make it globally available through window object
We only modified a few examples which no longer use jQueryUI, the main Examples that were modified and you can see live demos are the following
-
Example4-model (most comprehensive
- it uses the new minified JS+CSS versions included in the (
dist/
) folder - it does not use jQueryUI
- it uses the optional unicode icon stylesheet to cover for the missing jQueryUI icons
- it uses the new
Slick.Editors.Flatpickr
(which uses Flatpickr 3rd party lib) and also has the Slider Editor rewritten in pure JS
- it uses the new minified JS+CSS versions included in the (
-
Example - Draggable Grouping
- it does not use jQueryUI
- it uses the plugin
Slick.DraggableGrouping
that was updated to strictly work withSortableJS
- All the Basic Grids were updated to no longer use jQueryUI
We did not modify all Examples, there are still plenty of them using jQueryUI (just mentioning again that even if jQueryUI is now optional, you can still use it if you wish to). Also, if you want to help in removing jQueryUI from more Examples, we would certainly be happy to receive PRs (Pull Request) for that matter.
SlickGrid Repo
- Home
- The SlickGrid Manifesto
- The SlickGrid Community
- BugFix List
- Enhancement List
- Sharing Sample Pages
- Announcement & Migration to 3.0.0
- Announcement & Migration to 4.0.0
- Announcement & Migration to 5.0.0
Jump Start
Resources
- API Reference
- Grid
- Grid Options
- Auto Column Sizing
- Column Options
- Grid Events
- DataView
- DataView Events
- Providing data to the grid
- Plugins & Third-party packages
- CSP Compliance
Learning
Tests
Contact/Support