0

私は Dhtmlx スケジューラを使用していますが、うまく動作しますが、LightBox のカスタマイズに問題があります。ドロップダウン リストを追加し、json を使用して MySqli データベースからデータをロードしたいと考えています。これが私のコードです

require_once('codebase/connector/scheduler_connector.php');
require("codebase/connector/db_mysqli.php");    

$mysqli = new mysqli("$db", "$dbn", "$pw",  "$tb"); 


$listcollab = new OptionsConnector($mysqli, "MySQLi");
$listcollab->render_table("Operator","ID","ID(value),Name(label)");


$scheduler = new JSONSchedulerConnector($mysqli, "MySQLi");
$scheduler->set_options("coll", $listcollab); //without this scheduler charge data

$scheduler->render_table("Agenda","ID","AppStart,AppEnd,Cliente,Servizio");

これはクライアント側です

var list = scheduler.serverList("coll");    

    function init() {
        scheduler.config.xml_date = "%Y-%m-%d %H:%i";
        scheduler.config.prevent_cache = true;
        scheduler.config.first_hour = 8;
        scheduler.config.last_hour = 21;
        scheduler.config.limit_time_select = true;
        scheduler.locale.labels.section_location = "Servizio";
        scheduler.locale.labels.section_select = 'Seleziona';
        scheduler.config.details_on_create = true;
        scheduler.config.details_on_dblclick = true;
        scheduler.config.prevent_cache = true;

        scheduler.config.lightbox.sections = [
            {name:"CLIENTE", height:90, map_to:"Cliente", type:"textarea" , focus:true},
            {name:"Servizio", height:43, type:"textarea", map_to:"Servizio" },
            {name:"select", height:40, map_to:"ID", type:"select", options:scheduler.serverList(list)},
            {name:"Collaboratore", height:43, type:"textarea", map_to:"auto" },
            {name:"Orario", height:72, type:"time", map_to:"auto"}
        ];

        scheduler.init('scheduler_here', new Date(2015, 9, 23), "week");
        scheduler.load("connessione.php", 'json');

        var dp = new dataProcessor("connessione.php");
        dp.init(scheduler);

誰かがphpを使ってdbからデータを取得するのを手伝ってくれますか? 前もって感謝します

4

1 に答える 1