Hello, I use the utf8_general_ci character set for MySQL database and i need to show upper case strings on list and view page in phprunner application. I'm aware of the javascript method "var ctrl = Runner.getControl(pageid, 'FieldName'); ctrl.addStyle('text-transform: uppercase;');" and "$values["field"]=strtoupper($values["field"]);" but on list page it only shows character in upper case partialy, like this: EXAMPLEÅ¡đžćč where just characters without tick are in uppercase.
Is there any way to solve this issue?