Page 1 of 1

FilterEditor default Uppercase

PostPosted: Fri Mar 04, 2016 1:29 pm
by jvxdev
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.

Re: FilterEditor default Uppercase

PostPosted: Fri Mar 04, 2016 1:35 pm
by Support@SIB
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.

Code: Select all
filterEditor.setValue(value.toUpperCase());