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: App Builder :: Toggle Table Rows #5297

Open
FeernandoOFF opened this issue Feb 14, 2025 · 0 comments
Open

feature: App Builder :: Toggle Table Rows #5297

FeernandoOFF opened this issue Feb 14, 2025 · 0 comments
Assignees

Comments

@FeernandoOFF
Copy link

I'm trying to implement a Complex Table and want to be able to have a toggle button to show/hide detailed information, the current AG-GRID used in Windmill doesn't have a way to toggle nested data.

See example of the AG-GRID demos:

Screen.Recording.2025-02-14.at.17.26.00.mov

I'm looking for the following data structure to be able to have a toggle to show more detail:

[
  {
    group: "Test 1",
    parameters: [
      { name: "test", value:"value" },
      { name: "test1", value:"value" },
      { name: "test2", value:"value" }
      
    ]
  },
  {
    group: "Test 2",
    parameters: [
      { name: "test", value:"value" },
      { name: "test1", value:"value" },
      { name: "test2", value:"value" }
      
    ]
  },
  {
    group: "Test 3",
    parameters: [
      { name: "test", value:"value" },
      { name: "test1", value:"value" },
      { name: "test2", value:"value" }
      
    ]
  },
  {
    group: "Test4 ",
    parameters: [
      { name: "4test", value:"value" },
      { name: "t4est1", value:"value" },
      { name: "4test2", value:"value" }
      
    ]
  },
  
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants