In this tutorial, you'll learn how to create a powerful table with the help of a fairly new library in the JavaScript ecosystem - Grid.js. The best part? It's seriously easy to integrate, powerful enough to fetch data asynchronously, and can be styled to whatever the way you want! Next-gen stuff, right?
Why choose Grid.js? 🤨
What makes it better than others is the fact that it is:
Ridiculously easy to start with!
I mean, I made the following demo in a matter of a few minutes. It already comes with some really useful tools which can be easily plugged-in to an existing app. So, you don't need to worry about actually learn another new library.Use it with or without any framework:
It has only one external dependency already baked in. Hence, you don't have to worry about managing dependencies if you don't use a package manager like NPM. Use it with Angular, React, Vue, or with just vanilla JS!React Native support (UPCOMING):
It is designed to be independent of the web browser context, and the library developer has stated that support for RN is coming!Fast!
Grid.js has an internal pipeline that takes care of caching and processing data. This helps in loading, searching, sorting, or displaying the data really quickly.Powerful CSS integration:
You can style your tables whichever way you want. It doesn't matter if you're using plain old CSS in a separate stylesheet or inside JS 😏.
What will we make using Grid.js? 😀
This:
As you see, we'll cover the following features:
- Adding the "Loading..." state.
- Displaying the data.
- Sorting each or multiple rows.
- Searching the contents.
- Adding pagination.
- Using custom CSS styles.
- Adding internalization.
Let's make this powerful table in a matter of minutes! ⚡
Step 1️⃣: Grab the CDN
For this demo, we'll be installing Grid.js using the quick grab-the-cdn-and-go! method. Also, this is a vanilla JS project where we'll be using this library.
Add the following in your index.html file:
<link href="https://unpkg.com/gridjs/dist/theme/mermaid.min.css" rel="stylesheet" />
This includes Grid.js styles. For the JS, import the library with:
<script src="https://unpkg.com/gridjs/dist/gridjs.production.min.js">
Step 2️⃣: Give it a structure and initial style
Start with the HTML. It's just 22 characters! (yes, I did count that number 🥴) as we're only displaying a div
where our table will be placed.
<div id="table"></div>
BOOM! Onto next...
Step 3️⃣: Code the table
Instantiate the gridjs
object in your JS file as:
new gridjs.Grid({})
This gridjs
object holds all the configurations related to what we need in our table:
-
data
: where we define the rows and columns of the table. In this demo, let's choose a sample data from mockaroo.com. But before we add the data, we need to tell Grid.js on which HTML element we need this data to display. Hence, we userender()
method where we select thetable
element using the conventionaldocument.getElementById()
call.
new gridjs.Grid({}).render(document.getElementById("table"));
Grid.js stores the data in the form of both [key: string]
pairs as well as in usual array form [string, string]
. Here we're using the latter approach. Just add the sample data as a string here. For us to explicitly define the title of columns, just add the next config...
columns
: these are optional and are defined asstring[]
types. Therefore, we addcolumns: ["Name", "Email", "Phone Number","Gender"]
.Promise
to resolve data asynchronously: this is useful for any external HTTP calls and loading data from a server. Also, if you add asetTimeout()
function inside this async call, you will get the desired shimmer (loading...) effect, as seen in the demo. Here, I went for a 2-second delay so as to mock data fetching.
Now, our data()
config becomes:
data: () => {
return new Promise(resolve => {
setTimeout(() =>
resolve([
["Dirk", "dborkett0@com.com", "(646) 3432270", "Male"],
["Maryl", "mchampkins1@dailymail.co.uk", "(980) 3335235", "Female"],
["Stefan", "sbrawson2@smh.com.au", "(180) 3533257", "Male"],
["Stephanie", "scouronne4@storify.com", "(904) 5358792", "Female"],
["Emeline", "esooley5@cyberchimps.com", "(308) 6561908", "Female"],
["Gavra", "gkrout9@foxnews.com", "(383) 4909639", "Female"],
["Roxi", "rvillage1@businessweek.com", "(980) 3335235", "Male"],
["Jamey", "jsheringham0@rakuten.co.jp", "(773) 5233571", "Male"],
["Maye", "mambrosoni8@prweb.com", "(895) 9997017", "Female"]
]), 2000);
});
}
You should now have this data displayed on your webpage on a beautiful table. Time to add the rest of the features now!
Adding the searching and sorting capability is fairly easy. Just set the Boolean value to the following two configs to true
:
search: true,
sort: true
If the data is large, we definitely need some pagination. For that, Grid.js provides us with the pagination
object where we can set the limit
of how many data rows to display at once. The cool thing is it automatically add the pagination controls for us!
pagination: {
limit: 3
},
To further control the default height of your table, set the height
config to the value in pixels. Ex: height: '200px'
All the messages you see on the table like the search placeholder with emojis, "Displaying 1 to 3 of 9 Records," etc., are possible due to the language support of the library. It provides us with the language
config where we can pass on which text data to change where.
Hence, if you want to change the placeholder text of the 'search'
box, simply add it as a String object to language
and the same for the 'pagination'
. Here's our language
object now:
language: {
'search': {
'placeholder': '🔍 Search name, email...'
},
'pagination': {
'previous': '⬅️',
'next': '➡️',
'showing': '👓 Displaying',
'results': () => 'Records'
}
}
Finally, if you like to add some custom CSS classes, we have the className
config. To make any changes to your table
, simply add the respective custom class name as a String like:
className: {
table: 'table-body'
}
Now, in your CSS file, define the newly created table-body
class with the styles you need to add.
It's done! 🥳
If you're stuck somewhere in the code or just want to see the output, I've embedded the Pen below:
Where to next? 🤔
You've just scratched the surface of Grid.js. It's a relatively new library out there. You can now move ahead by trying out the following things:
Integrate it with your existing React, Vue or (if you're still using it in 2020 🙃) jQuery.
Import server-side data, add CSS-in-JS support and learn more!
Finally, support the developer and make contributions to its repository!
Thanks for reading, I appreciate it! Have a good day. (✿◕‿◕✿)
#codeFlaw #developer #machinLearning #programming RT @msdevUK: "Does it work?"
"Yes but-"
"Ship it!"
Image source: https://t.co/Y0r8DZDEBK#DevHumour #Developer pic.twitter.com/PRCmIeLsCo
— CodeFlaw (@CodeFlawCo) April 2, 2020
#codeFlaw #developer #machinLearning #programming RT @msdevUK: "Does it work?"
"Yes but-"
"Ship it!"
Image source: https://t.co/Y0r8DZDEBK#DevHumour #Developer pic.twitter.com/PRCmIeLsCo
📫 Subscribe to my weekly developer newsletter 📫
Daily delivers the best programming news every new tab. We will rank hundreds of qualified sources for you so that you can hack the future.