Schedular and combobox in Polish laguage

Hello.
I have a problem in setup a dhtmlxSchedular and comobobx with Polish signs like “ł,ś,ć” and others. Can anyone say what I need to do to have displaying polish signs.

Hello,

What you need to check is that every file/script have correct enconding settings, say utf8. The page itself, script to fetch data from the database, returned xml and the database.

Best regards,
Ilya

OK. Which files need to encode to utf-8 in dhtmlx files?

Here is the link system_work.byethost31.com/terminarz.php
I have a problem because Agenda is not displaying.

To have agenda you need to include
codebase\ext\dhtmlxscheduler_agenda_view.js

OK thanky you for agenda. What about files which need to be changed. I have try change few files but I dont know which one should be. In database I need to change to ut-8 tabels too?

Hello,

Check the following part which is returned from the server:

<option value='109'><![CDATA[Wo?ga]]></option>

xml itself is utf8 so make sure that correct information is actually stored in database.

Best regards,
Ilya

It is correct stored. In database I have Wołga…

Question is Which file is response for geting data from database maybe there is problem with encoding

Hello,

Try using

mysql_query("set names utf8");

after connecting to the database in the script file where you fetch options for combo box.

Best regards,
Ilya

It’s not helping . i have

$combo->render_sql(“SELECT * FROM marki_samoochodow “. $and.” ORDER BY nazwa ASC”,“id”,“nazwa”);
mysql_query(“set names utf8”);

It’s working. I have questions how to display in schedular Polish signs. What i need to do?

Ok I get this too but I dont know why is stop saving new events. How i can add new events not by schedular? How is generated “dhx_user” ?

Hello,

mysql_query(“set names utf8”); should just after you’ve connected to the database (so before all render_table/render_sql).

Same way. Check all files and add mysql_query(“set names utf8”); command.

Best regards,
Ilya