diff options
author | dmitry-radyno <dmitry.radyno@gmail.com> | 2013-04-15 13:34:24 +0200 |
---|---|---|
committer | dmitry-radyno <dmitry.radyno@gmail.com> | 2013-04-15 13:34:24 +0200 |
commit | 02a1869add8ed7777293d02fe3475a4f74b92bd2 (patch) | |
tree | e77b9b23ac72c562ec3f2cb8037e4bf58874c16e /samples | |
parent | 9b84df409d37cf5a172fda15b3e9daf8af8f6e18 (diff) | |
download | connector-php-02a1869add8ed7777293d02fe3475a4f74b92bd2.zip connector-php-02a1869add8ed7777293d02fe3475a4f74b92bd2.tar.gz connector-php-02a1869add8ed7777293d02fe3475a4f74b92bd2.tar.bz2 |
added ->openAll
Diffstat (limited to 'samples')
-rw-r--r-- | samples/gantt/01_basic_init_connector.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/samples/gantt/01_basic_init_connector.php b/samples/gantt/01_basic_init_connector.php index 1aad36d..304ab35 100644 --- a/samples/gantt/01_basic_init_connector.php +++ b/samples/gantt/01_basic_init_connector.php @@ -6,6 +6,7 @@ $res=mysql_connect($mysql_server,$mysql_user,$mysql_pass); mysql_select_db($mysql_db); - $scheduler = new JSONGanttConnector($res); - $scheduler->render_table("gantt_tasks","id","start_date,duration,text,progress,order,parent"); + $gantt = new JSONGanttConnector($res); + $gantt->openAll(); + $gantt->render_table("gantt_tasks","id","start_date,duration,text,progress,order,parent"); ?>
\ No newline at end of file |