Hi,
I want to change the default operators order for string fields, to do so I know I could redefine them this way:
this.gridOptions = {
filterable: {
mode: 'row',
operators: {
string: {
contains: 'Contains',
doesnotcontain: 'Does not contain',
startswith: 'Starts with',
endswith: 'Ends with',
eq: 'Is equal to',
neq: 'Is not equal to'
}
}
}
};
Doing so, since the application is multi-language, I'm losing the default translations provided by the loaded culture files.
Do you have an idea to simple solve that?
Thanks,
Enrico