Giter Site home page Giter Site logo

Comments (5)

michelengelen avatar michelengelen commented on July 22, 2024 1

Thanks for the quick response @michelengelen! This works for the filter list, but how can I remove this in the "Manage columns" panel as well? I can’t see a slotProps similar to this in the documentation.

No problem ... I did forget to include that.
There actually is a recipe that shows how to do this in the docs: Customize the list of columns in panel

Important

The slotProp got changed in v7
v6 => slotProps.columnsPanel.getTogglableColumns
v7 => slotProps.columnsManagement.getTogglableColumns

TLDR;

const getTogglableColumns = (columns: GridColDef[]) => {
  return columns.filter((column) => column.type !== 'custom').map((column) => column.field);
};

...

<DataGridPremium
  {...data}
  apiRef={apiRef}
  initialState={initialState}
  onRowSelectionModelChange={handleRowSelectionModelChange}
  rowSelectionModel={rowSelectionModel}
  checkboxSelection
  hideFooter
  slotProps={{
    filterPanel: {
      filterFormProps: {
        filterColumns,
      },
    },
    columnsManagement: {
      getTogglableColumns,
    },
  }}
/>

from mui-x.

michelengelen avatar michelengelen commented on July 22, 2024

Hey @RomanMain and thanks for raising this issue.
It is indeed not entirely intuitive and I guess even a bug, right @MBilalShafi ?

For a workaround (and maybe for additional filtering if needed) you can use the slotProps.filterPanel.filterFormProps.filterColumns method:

const filterColumns = ({ columns }: FilterColumnsArgs) => {
  return columns.filter((column) => column.type !== 'custom').map((column) => column.field);
};

...

<DataGridPremium
  {...data}
  apiRef={apiRef}
  initialState={initialState}
  onRowSelectionModelChange={handleRowSelectionModelChange}
  rowSelectionModel={rowSelectionModel}
  checkboxSelection
  hideFooter
  slotProps={{
    filterPanel: {
      filterFormProps: {
        filterColumns,
      },
    },
  }}
/>

In this specific case we can just filter by column.type !== 'custom' since those will filter all auto generated columns by default.

I will still put this on our board to see if the current behavior is intended.
If you need additional assistance please feel free to reach out! Thanks again! πŸ™‡πŸΌ

from mui-x.

RomanMain avatar RomanMain commented on July 22, 2024

Thanks for the quick response @michelengelen! This works for the filter list, but how can I remove this in the "Manage columns" panel as well? I can’t see a slotProps similar to this in the documentation.

from mui-x.

MBilalShafi avatar MBilalShafi commented on July 22, 2024

Hey @RomanMain,

As @michelengelen mentioned, the Customize the list of columns in panel seems exactly what you are looking for. The demo depicts how to hide the status column, and the grouped column from the columns panel (v6) and columns management panel (v7).

from mui-x.

github-actions avatar github-actions commented on July 22, 2024

The issue has been inactive for 7 days and has been automatically closed.

from mui-x.

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.