JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › Data Grid › adding children to expanded row using groupy › Reply To: adding children to expanded row using groupy
April 30, 2023 at 3:33 am
#104814
Winston SocialApps
Participant
or is this wierd behaviour is because I used Grid as functional component?
…
const MyComponent:FC=() => {
const {datasource} = useGridHooks();
const {getColumns, onRowExpand} = useGridEvents();
useEffect(()=>{
},[])
return (
<Grid
columns={getColumns}
datasource={datasource}
onRowExpand = {onRowExpand}
/>
)
}
Is this supported approach?