howdylikes

Google Developersってわかりづらいよね

2014-07-01から1ヶ月間の記事一覧

Apache Tiles3を使ってみる

メモです。ベースはSpring3です。 リファレンス : https://tiles.apache.org/framework/index.html サンプルソース : https://github.com/howdy39/ApacheTiles3Sample pom.xml org.apache.tilesを追加 <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-extras</artifactId> <version>3.0.4</version> </dependency> web.xml リスナ…

dhtmlxScheduler - タイムライン : ツリーモード

タイムラインのツリーモードを選べば開閉式のタイムラインが使える リファレンス : http://docs.dhtmlx.com/scheduler/timeline_view.html#datafortheyaxissectionsinthetreemode JS読み込み : dhtmlxscheduler_timeline.js dhtmlxscheduler_treetimeline.js…

dhtmlxScheduler - 読み取り専用化

読み取り専用にする方法 リファレンス : http://docs.dhtmlx.com/scheduler/readonly.html#readonlymodefortheentirescheduler JS読み込み : dhtmlxscheduler_readonly.js スケジューラーを読み取り専用にする : scheduler.config.readonly = true; 入力画面…

dhtmlXScheduler - 動的ローディング

動的ローディングについてのメモ リファレンス : http://docs.dhtmlx.com/scheduler/loading_data.html#dynamicloading scheduler.setLoadMode("month") scheduler.load("data/events.php"); setLoadMode切り替えてURLを自動生成してくれるが普通にparse複数…

dhtmlXScheduler - 概要

ただのメモです 実用的なのはちょこちょこ追加予定 機能 Google風のカレンダーUIが作れる スキンを使ってUIを変更 http://docs.dhtmlx.com/scheduler/skins.html 表示可能な画面タイプ http://docs.dhtmlx.com/scheduler/views.html 標準3種+拡張7種の全10種…