
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

TOAST UI Grid applies Google Analytics (GA) to collect statistics on the use of open source, in order to identify how widely TOAST UI Grid is used throughout the world.
It also serves as important index to determine the future course of projects.
location.hostname (e.g. > "ui.toast.com") is to be collected and the sole purpose is nothing but to measure statistics on the usage.
To disable GA, use the following usageStatistics option when creating the instance.
const options = {
// ...
usageStatistics: false
};
const instance = new Grid(options);
You can also see the older versions of API page on the releases page.
TOAST UI products can be used by using the package manager or downloading the source directly. However, we highly recommend using the package manager.
TOAST UI products are registered in two package managers, npm. You can conveniently install it using the commands provided by the package manager. When using npm, be sure to use it in the environment Node.js is installed.
$ npm install --save tui-grid # Latest version
$ npm install --save tui-grid@<version> # Specific version
TOAST UI products are available over the CDN powered by NHN Cloud.
You can use the CDN as below.
<link rel="stylesheet" href="https://uicdn.toast.com/grid/latest/tui-grid.css" />
...
<script src="https://uicdn.toast.com/grid/latest/tui-grid.js"></script>
If you want to use a specific version, use the tag name instead of latest in the url's path.
The CDN directory has the following structure.
grid/
├─ latest/
│ ├─ tui-grid.css
│ ├─ tui-grid.min.css
│ ├─ tui-grid.js
│ └─ tui-grid.min.js
├─ v3.8.0/
│ ├─ ...
Add the container element where TOAST UI Grid will be created.
<div id="grid"></div>
TOAST UI Grid can be used by creating an instance with the constructor function. To get the constructor function, you should import the module using one of the following ways depending on your environment.
const Grid = tui.Grid;
const Grid = require('tui-grid'); /* CommonJS */
import Grid from 'tui-grid'; /* ES6 */
You can create an instance with options and call various API after creating an instance.
const instance = new Grid({
el: document.getElementById('grid'), // Container element
columns: [
{
header: 'Name',
name: 'name'
},
{
header: 'Artist',
name: 'artist'
},
{
header: 'Release',
name: 'release'
},
{
header: 'Genre',
name: 'genre'
}
],
data: [
{
name: 'Beautiful Lies',
artist: 'Birdy',
release: '2016.03.26',
genre: 'Pop'
}
]
});
instance.resetData(newData); // Call API of instance's public method
Grid.applyTheme('striped'); // Call API of static method
FAQs
TOAST UI Grid : Powerful data grid control supported by TOAST UI
The npm package tui-grid receives a total of 1,814 weekly downloads. As such, tui-grid popularity was classified as popular.
We found that tui-grid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.