I've been using Fixed Data Table and i want to show/hide rows on row click. I couldn't find anything related to show/hide or sub table in react fixed data table. Is there any way to achieve this or any other table component which will help me achieve this.
Related
I have a react table with specific columns. I want to be able filter through those columns with a react select multi dropdown and show if the column value has changed.
is this possible? To link the column name to the multi select dropdown?
I have been trying to look for some documentation but cannot find any.
Can anyone point me in the right direction?
I'm trying to make my table rows draggable by using react-sortable-hoc. But I can't make it work correctly, can someone explain what am I'm doing wrong? My example: https://codesandbox.io/s/vibrant-cherry-dtkl5?file=/src/App.js
What I Have
I'm using "material-table": "1.67.1" sample image for show what I
need to do
What I Need to Do
I need to change columns in the table when i select dog from the drop
down already in the table using react js. as an example when i select
Dog i need to allow user to edit only two columns and when i select
cat i need to allow user to edit only one column.
Found the answer!
I used editComponent prop in material table with dropdown and then I used it's on change method to do the above task.
I have been trying for a while to create a table with expandable rows. And in the expandable row, i wanted to display a table with header and row data.
I tried different modules like Material-UI Table and material-table.
I can display a card for e.g., in the expandable row. But not a table with .
Does anyone know how to do this in react js?
thanks in advance
I have an adf table. Each column has a footer. These footers contain the sum of all the values of that column. The sum is calculated from a backing bean.
The issue is that the values are not getting populated in the footer with a table refresh. I have to do a page refresh to make them display the values. Doing a page refresh is not acceptable. Can some body help with this.
I have tried refreshing the table but that's not helping me.
I found the solution,
I was refreshing the table using the following statement
AdfFacesContext.getCurrentInstance().addPartialTarget(uiComponent);
where uiComponent is binded to the table. but when i did that only table is refreshing and not the footer.
so what i did i created a panelgrouplayout around the table. now binded this PanelGrouplayout to the managing bean(private RichPanelGroupLayout uiComponent)
now i refreshed the panelgrouplayout.using
AdfFacesContext.getCurrentInstance().addPartialTarget(uiComponent);
when i did that its refreshing the whole table and footer.
Thank you