Replies: 1 comment 1 reply
-
@conklin20, Did you find answer for your question? I have the same problem |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've searched many of the documents and issues looking for something along the same lines but haven't found anything, which makes me think it's something stupid on my end. For the life of me I can't get my DataGrid component to recognize the groupBy, rowGrouper, expandedGroupIds, or onExpandedGroupIdsChange props.
return ( <DataGrid rows={rows || []} columns={cols} defaultColumnOptions={{ sortable: true, resizable: true, }} onRowsChange={handleSetRows} sortColumns={handleSort} onSortColumnsChange={handleSetSorted} // rowKeyGetter={(row: any) => row.id} groupBy={groupBy} rowGrouper={rowGrouper} expandedGroupIds={expandedGroupIds} onExpandedGroupIdsChange={onExpandedGroupIdsChange} style={{ minHeight: '85%', width: '100%' }} /> );
Beta Was this translation helpful? Give feedback.
All reactions