Licensing Infinite Table

Free Usage

You can immediately download and use Infinite Table from the NPM registry free of charge.

Note

When using Infinite Table for free, you have access to all the features of Infinite Table, but you will see a Powered by Infinite Table link in the table footer.

You can use it for free in any product, but make sure the footer is always visible when Infinite Table is visible. For demo purposes, we don't show any license error for embeds in codesandbox.io - which are used throughout this demo site. Check the demo below to see the license footer in action.

Invalid License Demo
View Mode
Fork
import { InfiniteTable, DataSource } from '@infinite-table/infinite-react';
import type { InfiniteTableColumn } from '@infinite-table/infinite-react';
import * as React from 'react';

import { data, Person } from './data';

const columns: Record<string, InfiniteTableColumn<Person>> = {
  id: {
    // specifies which field from the data source
    // should be rendered in this column
    field: 'Id',
    type: 'number',
    defaultWidth: 80,
  },
  firstName: {
    field: 'FirstName',
  },
  age: { field: 'Age', type: 'number' },
};

export default function App() {
  return (
    <DataSource<Person> data={data} primaryKey="Id">
      <InfiniteTable<Person>
        licenseKey="<INVALID>"
        columnDefaultWidth={130}
        columns={columns}
      />
    </DataSource>

Licensed Usage

We invite you to try out Infinite Table and explore all the features it has to offer. We're confident it will be a useful addition to your React applications.

We encourage companies 🙌 to purchase development licenses for their teams and help us improve the product and support the development of new features.

See Pricing

See our pricing page for more information on how to purchase a license.