It won't get selected as master (details component) is a separate table, However you can write custom to select theme. That functionality exist in grouping what you are expecting, check once what you are looking for
share an example where rowGrouping is done in custom detail componenet for the data coming from same API as of masterGrid data(MasterGrid API has data returned from masterDetail rows as well)
Can we try master detail without enterprise in our local?
Hi detail rows not getting selected while selecting master rows..can u please assist on this
It won't get selected as master (details component) is a separate table, However you can write custom to select theme. That functionality exist in grouping what you are expecting, check once what you are looking for
Hi Sir,
Please let me know how to fix dynamic height of master detail based on content
Really appreciated. nice knowledgeable video
Can we copy data from Excel and paste it into ag-grid or material table
Yeah you can do this in agGrid www.ag-grid.com/archive/27.2.0/react-data-grid/clipboard/#example-simple
@@Codenemy yes sorry but it is paid version of ag-grid
@@boscocesar3748 Enterprise have this feature only
But how to do it free version?
Any guidance pls
Thanks for doing this video.
Thanks for watching :)
Much appreciated your work bro
Thank you for this video
Please can you try with angular 12. It is good for me. Thank you in advance
As i am not familier with Angular, but more and less should be same
share an example where rowGrouping is done in custom detail componenet for the data coming from same API as of masterGrid data(MasterGrid API has data returned from masterDetail rows as well)
Thank you, Can you make total of price field please
Add These in your aggrid
enableRangeSelection={true}
statusBar={statusBar}
onFirstDataRendered={onFirstDataRendered}
const onFirstDataRendered = useCallback((event) => {
event.api.addCellRange({
rowStartIndex: 0,
rowEndIndex: event.api.getModel().rowsToDisplay.length,
columns: ['age'],
});
}, []);
const statusBar = useMemo(() => {
return {
statusPanels: [
{
statusPanel: 'agAggregationComponent',
statusPanelParams: {
aggFuncs: ['sum', ],
},
},
],
};
}, []);
Thanks