FilterEditor default Uppercase
2 posts
• Page 1 of 1
FilterEditor default Uppercase
Is it possible to show letters in upper case in a FilterEditor? The database table only contains uppercase letters and my search should work with upper case only.
- jvxdev
- Posts: 19
- Joined: Fri Mar 04, 2016 12:40 pm
Re: FilterEditor default Uppercase
Hmm... you could use the LikeIgnoreCase condition because it works regardless of upper and lower case.
The FilterEditor comes with eventFilterValueChanged which will be triggered after the filter was applied. It's an information event.
The eventConfigureCustomCondition will be triggered before the filter will be applied. Use this event to change the set a custom condition and/or the search value, e.g.
The FilterEditor comes with eventFilterValueChanged which will be triggered after the filter was applied. It's an information event.
The eventConfigureCustomCondition will be triggered before the filter will be applied. Use this event to change the set a custom condition and/or the search value, e.g.
- Code: Select all
filterEditor.setValue(value.toUpperCase());
-
Support@SIB - Posts: 353
- Joined: Mon Sep 28, 2009 1:56 pm
2 posts
• Page 1 of 1