Giter VIP home page Giter VIP logo

Comments (4)

inovua-admin avatar inovua-admin commented on May 30, 2024

null and undefined are special since stringifying them ends up with the same value as stringifying empty strings.
Grouping is implemented via stringification, and a group key needs to be unique for a certain value.
So instead of poluting our codebase with all kind of weird checks, we have exposed column.groupToString and column.renderGroupTitle - you should use those to customize grouping to fit you specific needs - below you can find an example

const groupToString = value =>
  value === null
    ? '<null>'
    : value === undefined
    ? '<undefined>'
    : value || '<empty>';

const renderGroupTitle = value => {
  if (value === '<null>') {
    return 'NULL or whatever group title you need';
  }
  if (value === '<undefined>') {
    return 'UNDEFINED';
  }
  if (value === '<empty>') {
    return 'EMPTY';
  }
  return value;
};
const columns: TypeColumn[] = [
  {
    name: 'country',
    defaultFlex: 1,
    header: 'Country',

    groupToString,
    renderGroupTitle,
  },
  { name: 'firstName', defaultFlex: 1, header: 'First Name' },
  {
    name: 'age',
    type: 'number',
    defaultFlex: 1,
    header: 'Age',
    groupToString,
    renderGroupTitle,
  },
];

Let us know how it goes - should do the trick for even the most advanced use-cases.

from reactdatagrid.

goldylucks avatar goldylucks commented on May 30, 2024

The problem is not the display of the group string, the problem is the grouping is broken. It's not grouping correctly. ook at this screenshot for example (from the repro):

image

You can see that the group "usa" is collapsed, and yet there's an open subgroup beneath it. Isn't this a bug?

from reactdatagrid.

inovua-admin avatar inovua-admin commented on May 30, 2024

It is a bug for null and undefined values, but using the groupToString/renderGroupTitle pair of properties you can workaround those edge cases.

from reactdatagrid.

goldylucks avatar goldylucks commented on May 30, 2024

that did the trick, thanks :)

from reactdatagrid.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.