We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i try to export a table in csv and there is cellFilter in some column i recive this error:
Unknown provider: date:'dd/MM/yy'FilterProvider <- date:'dd/MM/yy'FilterUnknown provider
Unknown provider: bool FilterProvider <- bool provider
This is the colDef conf:
{ "field": "azienda", "name": "Cliente", "width": "**", "sort": { "direction": 'asc', "priority": 0 }}, { "field": "cliente.tipol", "name": "Tipologia", "width": "*"}, { "field": "nome","name": "nome", "width": "*"}, { "field": "cognome", "name": "cognome", "width": "*"}, { "field": "scadPS", "name": "Scad. PS" ,"cellFilter": 'date:\'dd/MM/yy\'', "width": "6%"}, { "field": "boolstato", "name": "Assunto", "cellFilter":'bool', "width": "5%"}, { "field": "statoCli","name": "Stato Cliente", 'visible': false, 'filters': [{"term":true}]}
boolstato have a custom filter 'bool'. scadPS have a classic date filter: "cellFilter": 'date:'dd/MM/yy''
Removing "cellFilter":'bool', and setting "cellFilter": 'date:'dd/MM/yy'' to "cellFilter": 'date:'' the export work correctly.
This filters work correctly on the table.
The text was updated successfully, but these errors were encountered:
3207b29
fix(exporter): Handle filters with 3 arguments
14ab49e
This should fix export csv with cellFilter. closes angular-ui#6784
No branches or pull requests
When i try to export a table in csv and there is cellFilter in some column i recive this error:
Unknown provider: date:'dd/MM/yy'FilterProvider <- date:'dd/MM/yy'FilterUnknown provider
Unknown provider: bool FilterProvider <- bool provider
This is the colDef conf:
boolstato have a custom filter 'bool'.
scadPS have a classic date filter: "cellFilter": 'date:'dd/MM/yy''
Removing "cellFilter":'bool', and setting "cellFilter": 'date:'dd/MM/yy'' to "cellFilter": 'date:'' the export work correctly.
This filters work correctly on the table.
The text was updated successfully, but these errors were encountered: