Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] VDataTable Group Ungrouped Values #21122

Open
dan-whitehouse opened this issue Mar 18, 2025 · 0 comments
Open

[Feature Request] VDataTable Group Ungrouped Values #21122

dan-whitehouse opened this issue Mar 18, 2025 · 0 comments
Labels
C: VDataTable T: enhancement Functionality that enhances existing features

Comments

@dan-whitehouse
Copy link

Problem to solve

This feature would allow for all values that do not match the current criteria for grouping to be put in it's own group.

Currently, if I am trying to group on a field called 'type', only records with a value are grouped. Which leaves all null/undefined/empty values ungrouped.

Proposed solution

What I proposing is an additional property on the VDataTable, lets call it group-empty-values that will tell the internal grouping function to group all empty values together in their own group.

export interface Group<T = any> {
  type: 'group'
  depth: number
  id: string
  key: string
  value: any
  items: readonly (T | Group<T>)[]
}

Where items would be full of records that contain null/undefined/empty values for that specific key.

@jcjp jcjp added T: enhancement Functionality that enhances existing features C: VDataTable labels Mar 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VDataTable T: enhancement Functionality that enhances existing features
Projects
None yet
Development

No branches or pull requests

2 participants