You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, when you use AgGridPesonCell with data extraction, default filter is not working correctly,
so you have to add custom filter in order to access correct data to filter. Here is working example:
// filterexportconstPersonFilter={filter: 'agSetColumnFilter',filterParams: {applyMiniFilterWhileTyping: true,keyCreator: (params: KeyCreatorParams<ContractPersonnelRequest,ContractPerson>)=>{returnparams.value?.azureId||'';},valueFormatter: (params: ValueFormatterParams<ContractPersonnelRequest,ContractPerson>)=>{returnparams.value ? params.value.name : '(Blanks)';},}asISetFilterParams,};// usage of person filter in person cellagGridPersonCell({field: 'person',headerName: 'Person',flex: 1,azureId: (data: Person)=>data.azureId,heading: (person)=>person.name,subHeading: (person)=>{returnperson.mail
? `<a href="mailto:${person.mail}">${person.mail}</a>`
: 'email not available';},dataToSort: (data: Person)=>data.name,
...PersonFilter,}),
Describe the solution you'd like
We should maybe write generic property like for sorting, where you can choose data to use to filter and data to format
Describe alternatives you've considered
Do nothing, leave it as is
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, when you use AgGridPesonCell with data extraction, default filter is not working correctly,
so you have to add custom filter in order to access correct data to filter. Here is working example:
Describe the solution you'd like
We should maybe write generic property like for sorting, where you can choose data to use to filter and data to format
Describe alternatives you've considered
Do nothing, leave it as is
The text was updated successfully, but these errors were encountered: