New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/grid

Package Overview
Dependencies
Maintainers
12
Versions
420
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/grid

A free, flexible and high-quality Web Component for showing large amounts of tabular data

  • 24.5.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
12
Weekly downloads
 
Created

What is @vaadin/grid?

@vaadin/grid is a web component for displaying tabular data. It provides a flexible and customizable grid layout that can handle large data sets with features like sorting, filtering, and pagination.

What are @vaadin/grid's main functionalities?

Data Display

This feature allows you to display data in a tabular format. The code sample shows how to define columns for a grid, specifying the data path and header for each column.

<vaadin-grid>
  <vaadin-grid-column path="name" header="Name"></vaadin-grid-column>
  <vaadin-grid-column path="age" header="Age"></vaadin-grid-column>
</vaadin-grid>

Sorting

Enables sorting of columns by clicking on the column headers. The 'sortable' attribute is added to the columns to allow this functionality.

<vaadin-grid>
  <vaadin-grid-column path="name" header="Name" sortable></vaadin-grid-column>
  <vaadin-grid-column path="age" header="Age" sortable></vaadin-grid-column>
</vaadin-grid>

Filtering

Allows users to filter data within the grid. The code sample demonstrates how to use filter columns to enable filtering functionality.

<vaadin-grid>
  <vaadin-grid-filter-column path="name" header="Name"></vaadin-grid-filter-column>
  <vaadin-grid-filter-column path="age" header="Age"></vaadin-grid-filter-column>
</vaadin-grid>

Pagination

Handles large data sets by paginating the data. The 'size' attribute defines the total number of items, and 'page-size' specifies the number of items per page.

<vaadin-grid size="200" page-size="50">
  <!-- columns -->
</vaadin-grid>

Other packages similar to @vaadin/grid

Keywords

FAQs

Package last updated on 28 Jan 2025

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc