3

dhtmlxスケジューラーの要件があります。ここで、イベントを編集して、1つのテキストボックスと1つのボタンを追加します。.js(圧縮)ファイルをカスタマイズする方法を教えてください。開発バージョンで利用できる個別の.jsファイルはありますか?もしあれば私に提案してください。ここに画像の説明を入力してください

ありがとう、Rajasekhar

4

2 に答える 2

2

このフォーム (またはライトボックス) の詳細を構成することができます。

これを行う方法に関するドキュメントはここにあります

このためにメインの dhtmlx ソースを編集する必要はありません。

于 2012-11-07T17:29:29.043 に答える
1

私はこの解決策を見つけました:フィールドdhtmlxscheduler.js を意味 するファイルを変更します:section

lightbox: {
        sections: [
            { name: "description", height: 40, map_to: "text", type: "textarea", focus: true },
            { name: "Note", height: 40, map_to: "text", type: "textarea", focus: true },
            { name: "Status", height: 40, map_to: "text", type: "textarea", focus: true },
            { name: "Type", height: 40, map_to: "text", type: "textarea", focus: true },
            { name: "Sequence", height: 40, map_to: "text", type: "textarea", focus: true },
            {name: "time", height: 72, type: "time", map_to: "auto"}
        ]
    },

labels:{
        dhx_cal_today_button:"Today",
        day_tab:"Day",
        week_tab:"Week",
        month_tab:"Month",
        new_event:"Nouvelle Tache",
        icon_save:"Save",
        icon_cancel:"Cancel",
        icon_details:"Details",
        icon_edit:"Edit",
        icon_delete:"Delete",
        confirm_closing:"",//Your changes will be lost, are your sure ?
        confirm_deleting:"Event will be deleted permanently, are you sure?",
        section_description: "Description",
        section_Note: "Note",
        section_Status: "Status",
        section_Type: "Type",
        section_Sequence: "Sequence",
        section_time:"Periode",
于 2013-07-09T16:06:37.840 に答える