Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@fullcalendar/scrollgrid

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fullcalendar/scrollgrid

Tabular data chunked into scrollable panes

  • 6.1.15
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
102K
decreased by-19.75%
Maintainers
1
Weekly downloads
 
Created

What is @fullcalendar/scrollgrid?

@fullcalendar/scrollgrid is a plugin for FullCalendar that provides a scrollable grid structure. It allows for the creation of complex calendar layouts with scrollable regions, making it easier to manage large datasets and improve the user experience.

What are @fullcalendar/scrollgrid's main functionalities?

Scrollable Grid

This feature allows you to create a grid with scrollable columns and rows. You can specify the width and height of each column and row, respectively.

import { ScrollGrid } from '@fullcalendar/scrollgrid';

const scrollGrid = new ScrollGrid({
  columns: [
    { width: 'auto' },
    { width: 100 },
    { width: 200 }
  ],
  rows: [
    { height: 'auto' },
    { height: 50 },
    { height: 100 }
  ]
});

scrollGrid.render();

Customizable Headers

This feature allows you to customize the headers of the grid. You can specify the text for each header, making it easier to understand the data presented in each column.

import { ScrollGrid } from '@fullcalendar/scrollgrid';

const scrollGrid = new ScrollGrid({
  headerContent: [
    { text: 'Column 1' },
    { text: 'Column 2' },
    { text: 'Column 3' }
  ]
});

scrollGrid.render();

Fixed and Scrollable Regions

This feature allows you to create fixed and scrollable regions within the grid. You can specify the number of fixed and scrollable columns and rows, making it easier to navigate large datasets.

import { ScrollGrid } from '@fullcalendar/scrollgrid';

const scrollGrid = new ScrollGrid({
  fixedColumns: 1,
  scrollableColumns: 2,
  fixedRows: 1,
  scrollableRows: 2
});

scrollGrid.render();

Other packages similar to @fullcalendar/scrollgrid

Keywords

FAQs

Package last updated on 12 Jul 2024

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