How to use tui-grid - 10 common examples

To help you get started, we’ve selected a few tui-grid examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github nhn / tui.grid / packages / toast-ui.vue-grid / src / Grid.vue View on Github external
applyTheme() {
      if (this.theme) {
        if (typeof this.theme === 'string') {
          Grid.applyTheme(this.theme);
        } else {
          Grid.applyTheme(this.theme.name, this.theme.value);
        }
      }
    },
    // @deprecated. You should use it via importing tui-grid directly.
github nhn / tui.grid / packages / toast-ui.vue-grid / src / Grid.vue View on Github external
applyTheme() {
      if (this.theme) {
        if (typeof this.theme === 'string') {
          Grid.applyTheme(this.theme);
        } else {
          Grid.applyTheme(this.theme.name, this.theme.value);
        }
      }
    },
    // @deprecated. You should use it via importing tui-grid directly.
github nhn / tui.grid / packages / toast-ui.react-grid / stories / index.stories.js View on Github external
const Story = () => {
    TuiGrid.applyTheme(theme);

    return ;
  };
github nhn / toast-ui.react-grid / stories / index.stories.js View on Github external
const Story = () => {
    TuiGrid.applyTheme(theme);

    return ;
  };
github nhn / tui.grid / packages / toast-ui.vue-grid / src / Grid.vue View on Github external
setLanguage() {
      if (this.language) {
        if (typeof this.language === 'string') {
          Grid.setLanguage(this.language);
        } else {
          Grid.setLanguage(this.language.name, this.language.value);
        }
      }
    },
    getRootElement() {
github nhn / tui.grid / packages / toast-ui.vue-grid / src / Grid.vue View on Github external
setLanguage() {
      if (this.language) {
        if (typeof this.language === 'string') {
          Grid.setLanguage(this.language);
        } else {
          Grid.setLanguage(this.language.name, this.language.value);
        }
      }
    },
    getRootElement() {
github nhn / toast-ui.react-grid / stories / index.stories.js View on Github external
const Story = () => {
    TuiGrid.setLanguage(lang);

    return ;
  };
github nhn / tui.grid / packages / toast-ui.react-grid / stories / index.stories.js View on Github external
const Story = () => {
    TuiGrid.setLanguage(lang);

    return ;
  };
github nhn / toast-ui.react-grid / src / index.js View on Github external
componentDidMount() {
    const {
      frozenColumnCount: frozenCount = 0,
      columnOptions: columnOptionsProp = {}
    } = this.props;

    const columnOptions = {
      ...columnOptionsProp,
      frozenCount
    };

    this.gridInst = new TuiGrid({
      el: this.rootEl.current,
      ...this.props,
      columnOptions
    });
    this.bindEventHandlers(this.props);
  }
github nhn / tui.grid / packages / toast-ui.react-grid / src / index.js View on Github external
componentDidMount() {
    this.gridInst = new TuiGrid({
      el: this.rootEl.current,
      ...this.props
    });

    this.bindEventHandlers(this.props);
  }

tui-grid

TOAST UI Grid : Powerful data grid control supported by TOAST UI

MIT
Latest version published 3 months ago

Package Health Score

78 / 100
Full package analysis