";
34 | }
35 | }
36 |
37 | /*! set maximum level of tree
38 | @param max_level
39 | maximum level
40 | */
41 | public function setMaxLevel($max_level) {
42 | $this->render->set_max_level($max_level);
43 | }
44 |
45 | public function get_level() {
46 | return $this->render->get_level($this->parent_name);
47 | }
48 |
49 | }
50 |
51 | ?>
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "dhtmlx/connector-php",
3 | "description": "PHP extension for the DHTMLX library",
4 | "homepage": "http://dhtmlx.com/docs/products/dhtmlxConnector/index.shtml",
5 | "keywords": ["dhtmlx","connector","connector-php"],
6 | "license": "GNU",
7 | "type": "library",
8 | "require": {
9 | "php": ">=5.4.0"
10 | },
11 | "autoload": {
12 | "psr-4": {
13 | "DHTMLX\\Connector\\": "codebase/"
14 | }
15 | },
16 | "min-stability": "dev",
17 | "prefer-stable": true,
18 | "extra": {
19 | "branch-alias": {
20 | "dev-master": "2.1-dev"
21 | }
22 | },
23 | "config": {
24 | "vendor-dir": "codebase/"
25 | }
26 | }
--------------------------------------------------------------------------------
/samples/combo/01_basic.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Filtering and Autocomplete mode
5 |
6 |
7 |
8 |
9 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
23 |
27 |
31 |
32 | <?php
33 |
require_once("../config.php");
34 |
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
35 |
mysql_select_db($mysql_db);
36 |
37 |
require("../../codebase/combo_connector.php");
38 |
$combo = new ComboConnector($res);
39 |
$combo->enable_log("temp.log");
40 |
$combo->render_table("country_data","country_id","name");
41 |
?>
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/samples/combo/01_basic_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("temp.log");
10 | $combo->render_table("country_data","country_id","name");
11 | ?>
--------------------------------------------------------------------------------
/samples/combo/01_basic_srnd_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("temp.log");
9 | $combo->dynamic_loading(2);
10 | $combo->render_table("country_data","country_id","name");
11 | ?>
--------------------------------------------------------------------------------
/samples/combo/02_sql.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Filtering and Autocomplete mode
5 |
6 |
7 |
8 |
9 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
23 |
27 |
31 |
32 | <?php
33 |
require_once("../config.php");
34 |
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
35 |
mysql_select_db($mysql_db);
36 |
37 |
require("../../codebase/combo_connector.php");
38 |
$combo = new ComboConnector($res);
39 |
$combo->enable_log("temp.log");
40 |
$combo->render_sql("SELECT * FROM country_data WHERE country_id >40 ","country_id","name");
41 |
?>
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/samples/combo/02_sql_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("temp.log");
9 | $combo->render_sql("SELECT * FROM country_data WHERE country_id >40 ","country_id","name");
10 | ?>
--------------------------------------------------------------------------------
/samples/combo/02_sql_srnd_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("temp.log");
9 | $combo->dynamic_loading(2);
10 | $combo->render_sql("SELECT * FROM country_data WHERE country_id >40 ","country_id","name");
11 | ?>
--------------------------------------------------------------------------------
/samples/combo/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 | dhtmlxConnector for PHP :: Samples
20 |
21 | Basic init
22 | Basic init by sql string
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/samples/common/01_mixin_connector.php:
--------------------------------------------------------------------------------
1 | configure("country_data", "country_id", "name,full_name,type");
13 |
14 | $data2 = new JSONTreeDataConnector($res, "PDO");
15 | $data2->configure("tasks","taskId","taskName","","parentId");
16 |
17 | $conn = new MixedConnector("json");
18 | $conn->add("country_data", $data1);
19 | $conn->add("countries", $data2);
20 | $conn->render();
21 |
22 | ?>
--------------------------------------------------------------------------------
/samples/common/02_easyfilter_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
10 | $grid->filter("item_nm", "member");
11 | // $grid->filter("item_nm='member'");
12 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
13 | ?>
--------------------------------------------------------------------------------
/samples/common/03_easysort_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
10 | $grid->sort("item_nm ASC");
11 | $grid->sort("item_cd", "DESC");
12 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
13 | ?>
--------------------------------------------------------------------------------
/samples/common/04_mix_connector.php:
--------------------------------------------------------------------------------
1 | mix("active", "yes");
13 | $details->configure("types","typeid","name");
14 |
15 | $events = new JSONSchedulerConnector($res, "PDO");
16 | $events->mix("types", $details, array(
17 | "typeid" => "type"
18 | ));
19 | $events->render_table("tevents","event_id","start_date,end_date,event_name,type", "", "");
20 | ?>
--------------------------------------------------------------------------------
/samples/common/05_asstring_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
9 | $data->asString(true);
10 | $json = $data->render_table("grid50000","item_id","item_nm,item_cd");
11 | echo "Generated json:
";
12 | echo $json;
13 | ?>
--------------------------------------------------------------------------------
/samples/config.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/samples/dataview/01_static_loading.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Static loading
5 |
6 |
7 |
8 |
11 |
12 |
13 | Static loading
14 | All data is loaded at once
15 |
16 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/samples/dataview/01_static_loading.php:
--------------------------------------------------------------------------------
1 | render_sql(" SELECT * FROM packages_plain WHERE Id < 1000","Id","Package,Version,Maintainer");
10 | ?>
--------------------------------------------------------------------------------
/samples/dataview/02_dynamic_loading.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Dynamic loading
5 |
6 |
7 |
8 |
11 |
12 |
13 | Dynamic loading
14 | Data is loaded to the DataView on demand
15 |
16 |
17 |
18 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/samples/dataview/02_dynamic_loading.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(50);
10 | $data->render_table("packages_plain","Id","Package,Version,Maintainer");
11 | ?>
--------------------------------------------------------------------------------
/samples/dataview/03_adding.html:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 | Connecting to database
14 |
15 |
16 |
17 |
20 |
21 | Connecting to database
22 |
23 |
31 |
32 |
33 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/samples/dataview/03_adding.php:
--------------------------------------------------------------------------------
1 | render_table("packages_small","Id","Package,Version,Maintainer");
10 | ?>
--------------------------------------------------------------------------------
/samples/dataview/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 | dhtmlxConnector for PHP :: Samples
20 | Static loading
21 | Dynamic loading
22 | Adding
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxacc_skyblue/dhxacc_btns.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxacc_skyblue/dhxacc_btns.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxacc_skyblue/dhxacc_cell_progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxacc_skyblue/dhxacc_cell_progress.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_arrow_left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_arrow_left.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_arrow_right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_arrow_right.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_clock.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_clock.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_mark.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_mark.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_selector_bottom.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_selector_bottom.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_selector_top.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcalendar_skyblue/dhxcalendar_selector_top.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcarousel_skyblue/dhxcarousel_cell_progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcarousel_skyblue/dhxcarousel_cell_progress.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcombo_skyblue/dhxcombo_arrow_down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcombo_skyblue/dhxcombo_arrow_down.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcombo_skyblue/dhxcombo_arrow_down_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcombo_skyblue/dhxcombo_arrow_down_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcombo_skyblue/dhxcombo_chbx.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcombo_skyblue/dhxcombo_chbx.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcp_skyblue/dhxcp_colors.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcp_skyblue/dhxcp_colors.png
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxcp_skyblue/dhxcp_icon_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxcp_skyblue/dhxcp_icon_save.png
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxdataview_skyblue/dnd_selector.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxdataview_skyblue/dnd_selector.png
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxdataview_skyblue/dnd_selector_cells.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxdataview_skyblue/dnd_selector_cells.png
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxdataview_skyblue/dnd_selector_lines.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxdataview_skyblue/dnd_selector_lines.png
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxdataview_skyblue/marker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxdataview_skyblue/marker.png
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/align_center.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/align_center.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/align_justify.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/align_justify.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/align_left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/align_left.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/align_right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/align_right.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/bold.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/bold.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/buttons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/buttons.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/clear.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/clear.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/h1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/h1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/h2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/h2.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/h3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/h3.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/h4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/h4.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/indent_dec.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/indent_dec.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/indent_inc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/indent_inc.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/italic.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/italic.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/list_bullet.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/list_bullet.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/list_number.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/list_number.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/script_sub.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/script_sub.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/script_super.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/script_super.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/strike.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/strike.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxeditor_skyblue/underline.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxeditor_skyblue/underline.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxform_skyblue/dhxform_chbxrd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxform_skyblue/dhxform_chbxrd.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxform_skyblue/dhxform_upload_buttons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxform_skyblue/dhxform_upload_buttons.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxform_skyblue/dhxform_upload_uploading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxform_skyblue/dhxform_upload_uploading.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_left.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_left_abs.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_left_abs.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_left_abs_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_left_abs_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_left_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_left_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_right.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_right_abs.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_right_abs.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_right_abs_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_right_abs_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_right_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/ar_right_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/blank.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/combo_select.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/combo_select.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/combo_select_dhx_skyblue.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/combo_select_dhx_skyblue.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/combo_select_dhx_skyblue_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/combo_select_dhx_skyblue_normal.png
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/combo_select_dhx_skyblue_red_corner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/combo_select_dhx_skyblue_red_corner.png
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/dyn_.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/dyn_.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/dyn_down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/dyn_down.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/dyn_up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/dyn_up.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/imageloaderror.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/imageloaderror.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/item_chk0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/item_chk0.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/item_chk0_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/item_chk0_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/item_chk1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/item_chk1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/item_chk1_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/item_chk1_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/minus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/minus.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/paging_page.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/paging_page.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/paging_pages.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/paging_pages.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/paging_rows.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/paging_rows.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/plus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/plus.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/radio_chk0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/radio_chk0.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/radio_chk0_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/radio_chk0_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/radio_chk1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/radio_chk1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/radio_chk1_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/radio_chk1_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/sort_asc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/sort_asc.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/sort_desc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/sort_desc.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/blank.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/folder.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/folder.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/leaf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/leaf.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line2.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line3.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/line4.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus2.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus3.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus4.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/minus5.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus2.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus3.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus4.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxgrid_skyblue/tree/plus5.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxlayout_skyblue/dhxlayout_cell_btns.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxlayout_skyblue/dhxlayout_cell_btns.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxlayout_skyblue/dhxlayout_cell_progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxlayout_skyblue/dhxlayout_cell_progress.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxlayout_skyblue/dhxlayout_sep_h.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxlayout_skyblue/dhxlayout_sep_h.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxlayout_skyblue/dhxlayout_sep_v.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxlayout_skyblue/dhxlayout_sep_v.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_arrow_down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_arrow_down.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_arrow_down_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_arrow_down_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_arrow_up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_arrow_up.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_arrow_up_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_arrow_up_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_chrd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_chrd.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_loader.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_subar.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxmenu_skyblue/dhxmenu_subar.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxpopup_skyblue/dhxpopup_arrow_bottom.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxpopup_skyblue/dhxpopup_arrow_bottom.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxpopup_skyblue/dhxpopup_arrow_left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxpopup_skyblue/dhxpopup_arrow_left.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxpopup_skyblue/dhxpopup_arrow_right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxpopup_skyblue/dhxpopup_arrow_right.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxpopup_skyblue/dhxpopup_arrow_top.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxpopup_skyblue/dhxpopup_arrow_top.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxribbon_skyblue/dhxribbon_arrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxribbon_skyblue/dhxribbon_arrow.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxribbon_skyblue/dhxribbon_checked.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxribbon_skyblue/dhxribbon_checked.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxribbon_skyblue/dhxribbon_checked_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxribbon_skyblue/dhxribbon_checked_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxsidebar_skyblue/dhxsidebar_arrow_down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxsidebar_skyblue/dhxsidebar_arrow_down.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxsidebar_skyblue/dhxsidebar_arrow_up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxsidebar_skyblue/dhxsidebar_arrow_up.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxsidebar_skyblue/dhxsidebar_cell_progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxsidebar_skyblue/dhxsidebar_cell_progress.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtabbar_skyblue/dhxtabbar_arrows.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtabbar_skyblue/dhxtabbar_arrows.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtabbar_skyblue/dhxtabbar_button_close.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtabbar_skyblue/dhxtabbar_button_close.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtabbar_skyblue/dhxtabbar_cell_progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtabbar_skyblue/dhxtabbar_cell_progress.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtoolbar_skyblue/dhxtoolbar_arrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtoolbar_skyblue/dhxtoolbar_arrow.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtoolbar_skyblue/dhxtoolbar_arrow_dis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtoolbar_skyblue/dhxtoolbar_arrow_dis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/blank.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/but_cut.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/but_cut.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/folderClosed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/folderClosed.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/folderOpen.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/folderOpen.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/iconCheckAll.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/iconCheckAll.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/iconCheckDis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/iconCheckDis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/iconCheckGray.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/iconCheckGray.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/iconUncheckAll.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/iconUncheckAll.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/iconUncheckDis.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/iconUncheckDis.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/leaf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/leaf.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line1_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line1_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line2.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line2_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line2_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line3.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line3_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line3_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line4.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/line4_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/line4_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/lock.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/lock.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus2.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus2_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus2_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus3.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus3_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus3_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus4.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus4_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus4_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus5.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/minus5_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/minus5_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus1.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus2.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus2_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus2_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus3.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus3_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus3_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus4.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus4_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus4_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus5.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/plus5_rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/plus5_rtl.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/radio_off.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/radio_off.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxtree_skyblue/radio_on.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxtree_skyblue/radio_on.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxwins_skyblue/dhxwins_buttons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxwins_skyblue/dhxwins_buttons.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxwins_skyblue/dhxwins_icon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxwins_skyblue/dhxwins_icon.gif
--------------------------------------------------------------------------------
/samples/dhtmlx/imgs/dhxwins_skyblue/dhxwins_progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/dhtmlx/imgs/dhxwins_skyblue/dhxwins_progress.gif
--------------------------------------------------------------------------------
/samples/export/csv.php:
--------------------------------------------------------------------------------
1 | excel();
12 |
13 | $grid = new GridConnector($res, "PDO");
14 | $grid->set_limit(100);
15 | $config = new GridConfiguration();
16 |
17 | $grid = new GridConnector($res, "PDO");
18 | $grid->set_config($config);
19 | $grid->render_table("grid50000");
20 | ?>
--------------------------------------------------------------------------------
/samples/export/excel.php:
--------------------------------------------------------------------------------
1 | excel();
12 |
13 | $grid = new GridConnector($res, "PDO");
14 | $grid->set_limit(100);
15 | $config = new GridConfiguration();
16 |
17 | $grid = new GridConnector($res, "PDO");
18 | $grid->set_config($config);
19 | $grid->render_table("grid50000");
20 | ?>
--------------------------------------------------------------------------------
/samples/export/html.php:
--------------------------------------------------------------------------------
1 | excel();
12 |
13 | $grid = new GridConnector($res, "PDO");
14 | $grid->set_limit(100);
15 | $config = new GridConfiguration();
16 |
17 | $grid = new GridConnector($res, "PDO");
18 | $grid->set_config($config);
19 | $grid->render_table("grid50000");
20 | ?>
--------------------------------------------------------------------------------
/samples/export/pdf.php:
--------------------------------------------------------------------------------
1 | set_limit(100);
14 | $config = new GridConfiguration();
15 |
16 | $config->set_convert_mode(true);
17 | $grid->set_config($config);
18 | $grid->render_table("grid50000");
19 | ?>
--------------------------------------------------------------------------------
/samples/gantt/01_basic_init_connector.php:
--------------------------------------------------------------------------------
1 | mix("open", 1);
12 |
13 | $gantt->render_links("gantt_links", "id", "source,target,type");
14 | $gantt->render_table("gantt_tasks","id","start_date,duration,text,progress,parent","");
15 |
16 | ?>
--------------------------------------------------------------------------------
/samples/grid/01_basic_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("some.txt", true);
9 | $grid->dynamic_loading(100);
10 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
11 | ?>
--------------------------------------------------------------------------------
/samples/grid/01a_sql_basic_connector.php:
--------------------------------------------------------------------------------
1 | render_sql($sql,"item_id","item_nm,item_cd");
11 |
12 | ?>
--------------------------------------------------------------------------------
/samples/grid/02_rendering_connector.php:
--------------------------------------------------------------------------------
1 | get_index()%2) {
8 | $row->set_row_style("background-color: red");
9 | }
10 | }
11 | require("../../codebase/grid_connector.php");
12 | $grid = new GridConnector($res, "PDO");
13 |
14 | $grid->dynamic_loading(100);
15 | $grid->event->attach("beforeRender","color_rows");
16 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
17 | ?>
--------------------------------------------------------------------------------
/samples/grid/03_validation_connector.php:
--------------------------------------------------------------------------------
1 | get_value("item_cd")=="" || $action->get_value("item_nm")=="")
8 | $action->invalid();
9 | }
10 | require("../../codebase/grid_connector.php");
11 | $grid = new GridConnector($res, "PDO");
12 |
13 | $grid->dynamic_loading(100);
14 | $grid->event->attach("beforeProcessing",check_data);
15 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
16 | ?>
--------------------------------------------------------------------------------
/samples/grid/04_custom_sql_connector.php:
--------------------------------------------------------------------------------
1 | sql->attach("delete","update grid50000 set item_nm='deleted' where item_id='{item_id}'");
11 |
12 | $grid->dynamic_loading(100);
13 |
14 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
15 | ?>
--------------------------------------------------------------------------------
/samples/grid/05_select_filter_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
9 | $grid->render_table("countries","item_id","item_nm,item_cd");
10 | ?>
--------------------------------------------------------------------------------
/samples/grid/05a_select_filter_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
12 |
13 | /*$filter1 = new OptionsConnector($res, "PDO");
14 | $filter1->render_table("countries","item_id","item_id(value),item_nm(label)");
15 | $grid->set_options("item_nm",$filter1);*/
16 |
17 | $filter1 = new OptionsConnector($res, "PDO");
18 | $filter1->render_sql("SELECT DISTINCT SUBSTR(item_nm,1,2) as value from grid50000","item_id","item_nm(value)");
19 | $grid->set_options("item_nm",$filter1);
20 |
21 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
22 | ?>
--------------------------------------------------------------------------------
/samples/grid/06_combo_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
12 |
13 | /*$filter1 = new OptionsConnector($res, "PDO");
14 | $filter1->render_table("countries","item_id","item_id(value),item_nm(label)");
15 | $grid->set_options("item_nm",$filter1);*/
16 |
17 | $filter1 = new OptionsConnector($res, "PDO");
18 | $filter1->render_table("countries","item_id","item_id(value),item_nm(label)");
19 | $grid->set_options("item_nm",$filter1);
20 |
21 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
22 |
23 | ?>
--------------------------------------------------------------------------------
/samples/grid/09_server_side_configuration.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | For demo purpose only :: &1
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/samples/grid/09_server_side_configuration.php:
--------------------------------------------------------------------------------
1 | set_limit(100);
9 |
10 | $config = new GridConfiguration();
11 | $config->setHeader("ID,First Name,Last Name,Title,Office,Extn,Mobile,Email");
12 | $config->setColTypes("ro,ed,ed,ed,ed,ed,ed,ed");
13 | $grid->set_config($config);
14 |
15 | $grid->render_table("grid50000");
16 | ?>
--------------------------------------------------------------------------------
/samples/grid/10_auto_config.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | For demo purpose only :: &1
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/samples/grid/10_auto_config.php:
--------------------------------------------------------------------------------
1 | set_config(false);
9 | $grid->dynamic_loading(100);
10 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
11 | ?>
--------------------------------------------------------------------------------
/samples/grid/11_auto_config_filters.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | For demo purpose only :: &1
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/samples/grid/11_auto_config_filters.php:
--------------------------------------------------------------------------------
1 | set_config(true);
10 | $grid->dynamic_loading(100);
11 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
12 | ?>
--------------------------------------------------------------------------------
/samples/grid/12_attach_header_server.php:
--------------------------------------------------------------------------------
1 | setHeader("Item,#cspan");
13 | $config->attachHeader("Item Name,Item CD");
14 | $config->setColIds("col1,col2");
15 | $config->setInitWidths('120,*');
16 | $config->setColSorting("connector,connector");
17 | $config->setColColor(",#dddddd");
18 | $config->setColHidden("false,false");
19 | $config->setColTypes("ro,ed");
20 | $config->setColAlign('center,center');
21 | $config->setColVAlign('bottom,middle');
22 |
23 | $grid->set_config($config);
24 |
25 | $grid->dynamic_loading(100);
26 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
27 | ?>
--------------------------------------------------------------------------------
/samples/grid/13_filesystem_grid_connector.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | For demo purpose only :: &1
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
19 |
20 |
21 | <?php
22 |
require_once("../../codebase/db_filesystem.php");
23 |
require_once("../../codebase/grid_connector.php");
24 |
25 |
$grid = new GridConnector("c:/", "FileSystem");
26 |
$grid->render_table("../","safe_name","filename,full_filename,size,name,extention,date,is_folder");
27 |
?>
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/samples/grid/13_filesystem_grid_connector.php:
--------------------------------------------------------------------------------
1 | render_table("../","safe_name","filename,full_filename,size,name,extention,date,is_folder");
7 | ?>
--------------------------------------------------------------------------------
/samples/grid/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 | dhtmlxConnector for PHP :: Samples
20 | Basic init
21 | Basic init by sql string
22 | Rendering customization
23 | Validation
24 | Custom update logic
25 | Select filter in grid
26 | Select filter in grid ( different init )
27 | Combo in grid (sub connector)
28 | Combo in grid (predefined list)
29 | Configuration on server side
30 | Auto configuration
31 | Auto configuration with filters
32 | Attaching header on the server side
33 | File system connector
34 |
35 |
--------------------------------------------------------------------------------
/samples/grid/xx_adodb.php:
--------------------------------------------------------------------------------
1 | Connect($mysql_server,$mysql_user,$mysql_pass, $mysql_db);
8 |
9 | require("../../codebase/grid_connector.php");
10 | require("../../codebase/db_adodb.php");
11 | $grid = new GridConnector($db, "Ado");
12 | $grid->dynamic_loading(100);
13 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
14 |
15 | ?>
--------------------------------------------------------------------------------
/samples/grid/xx_sample_mssql_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
12 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
13 | ?>
--------------------------------------------------------------------------------
/samples/grid/xx_sample_mysqli.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MySQLi connector with dhtmlxGrid - read-only version
5 |
6 |
7 |
8 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/samples/grid/xx_sample_mysqli_connector.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DHTMLX/connector-php/894282441cb11df47ed05db609652a35a3d143d8/samples/grid/xx_sample_mysqli_connector.php
--------------------------------------------------------------------------------
/samples/grid/xx_sample_oracle_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(50);
13 | $grid->sql->sequence("EMPLOYEES_INC.nextVal");
14 | $grid->render_table("EMPLOYEES","EMPLOYEE_ID","FIRST_NAME,LAST_NAME");
15 |
16 | ?>
--------------------------------------------------------------------------------
/samples/grid/xx_sample_pdo_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
10 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
11 | ?>
--------------------------------------------------------------------------------
/samples/grid/xx_sample_pdo_pg_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
10 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
11 | ?>
--------------------------------------------------------------------------------
/samples/grid/xx_sample_postgresql_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(100);
12 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
13 | ?>
--------------------------------------------------------------------------------
/samples/grid/xx_sample_sasql_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("temp.log",true);
9 | $grid->dynamic_loading(100);
10 | $grid->render_table("Contacts","ID","Surname,GivenName,Title");
11 | ?>
--------------------------------------------------------------------------------
/samples/grid/xx_sample_sqlite3_connector.php:
--------------------------------------------------------------------------------
1 | render_table("grid50000","item_id","item_nm,item_cd");
11 |
12 | ?>
--------------------------------------------------------------------------------
/samples/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 | dhtmlxConnector for PHP :: Samples
20 |
21 | Be sure to create a test DB from "dump.sql" and adjust db settings in "config.php"
22 |
23 | Grid
24 | Tree
25 | TreeGrid
26 | Combo
27 | DataView
28 | Scheduler
29 |
30 | Data Export
31 |
32 |
--------------------------------------------------------------------------------
/samples/readme.txt:
--------------------------------------------------------------------------------
1 | Expected php.ini settings
2 | magic_quotes off
3 | error_level E_ALL & ~E_NOTICE
4 |
5 |
6 | Before running samples, make sure that db connection settings in config.php are set properly and database was filled from dump.sql file
7 |
8 | (c) dhtmlx ltd.
--------------------------------------------------------------------------------
/samples/scheduler/01_basic_init.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
17 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
49 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/samples/scheduler/01_basic_init_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("log.txt",true);
11 | $scheduler->render_table("events","event_id","start_date,end_date,event_name,details");
12 | ?>
--------------------------------------------------------------------------------
/samples/scheduler/02_dynamic_loading.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
17 |
18 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/samples/scheduler/02_dynamic_loading_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("log.txt",true);
11 | $scheduler->render_table("events","event_id","start_date,end_date,event_name,details");
12 | ?>
--------------------------------------------------------------------------------
/samples/scheduler/03_connector_options.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
17 |
18 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/samples/scheduler/03_connector_options.php:
--------------------------------------------------------------------------------
1 | render_table("types","typeid","typeid(value),name(label)");
9 |
10 | $scheduler = new schedulerConnector($res, "PDO");
11 | // $scheduler->enable_log("log.txt",true);
12 |
13 | $scheduler->set_options("type", $list);
14 | $scheduler->render_table("tevents","event_id","start_date,end_date,event_name,type");
15 | ?>
--------------------------------------------------------------------------------
/samples/scheduler/04_recurring_events.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
18 |
19 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/samples/scheduler/04_recurring_events_connector.php:
--------------------------------------------------------------------------------
1 | get_status();
13 | $type =$action->get_value("rec_type");
14 | $pid =$action->get_value("event_pid");
15 | //when serie changed or deleted we need to remove all linked events
16 | if (($status == "deleted" || $status == "updated") && $type!=""){
17 | $scheduler->sql->query("DELETE FROM events_rec WHERE event_pid='".$scheduler->sql->escape($action->get_id())."'");
18 | }
19 | if ($status == "deleted" && $pid !=0){
20 | $scheduler->sql->query("UPDATE events_rec SET rec_type='none' WHERE event_id='".$scheduler->sql->escape($action->get_id())."'");
21 | $action->success();
22 | }
23 |
24 | }
25 | function insert_related($action){
26 | $status = $action->get_status();
27 | $type =$action->get_value("rec_type");
28 |
29 | if ($status == "inserted" && $type=="none")
30 | $action->set_status("deleted");
31 | }
32 |
33 | $scheduler = new schedulerConnector($res, "PDO");
34 | //$scheduler->enable_log("log.txt",true);
35 | $scheduler->event->attach("beforeProcessing","delete_related");
36 | $scheduler->event->attach("afterProcessing","insert_related");
37 | $scheduler->render_table("events_rec","event_id","start_date,end_date,text,rec_type,event_pid,event_length");
38 | ?>
--------------------------------------------------------------------------------
/samples/scheduler/05_json.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
15 |
16 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
49 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/samples/scheduler/05_json_connector.php:
--------------------------------------------------------------------------------
1 | render_table("events","event_id","start_date,end_date,event_name,details");
11 | ?>
--------------------------------------------------------------------------------
/samples/scheduler/06_json_connector_options.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
17 |
18 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/samples/scheduler/06_json_connector_options.php:
--------------------------------------------------------------------------------
1 | render_table("types","typeid","typeid(value),name(label)");
9 |
10 | $scheduler = new JSONSchedulerConnector($res, "PDO");
11 |
12 | $scheduler->set_options("type", $list);
13 | $scheduler->render_table("tevents","event_id","start_date,end_date,event_name,type");
14 | ?>
--------------------------------------------------------------------------------
/samples/scheduler/07_array_connector.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
17 |
18 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/samples/scheduler/07_array_connector.php:
--------------------------------------------------------------------------------
1 | 1, "start_date" => "2012-05-24 00:00", "end_date" => "2012-05-25 00:00", "event_name" => "creation time"),
7 | array("event_id" => 2, "start_date" => "2010-02-16", "end_date" => "2084-06-08", "event_name" => "second part")
8 | );
9 |
10 | $scheduler = new SchedulerConnector(null);
11 | $scheduler->render_array($data,"event_id","start_date,end_date,event_name");
12 | ?>
--------------------------------------------------------------------------------
/samples/scheduler/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 | dhtmlxConnector for PHP :: Samples
20 |
21 | Basic init
22 | Dynamic loading
23 | Connector options
24 | Recurring events
25 | JSON data loading
26 | JSON data loading with optionsConnector
27 | array data loading
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/samples/security/data_csrf.php:
--------------------------------------------------------------------------------
1 | set_limit(10);
12 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
13 | ?>
--------------------------------------------------------------------------------
/samples/security/dataview_csrf.php:
--------------------------------------------------------------------------------
1 | set_limit(10);
12 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
13 | ?>
--------------------------------------------------------------------------------
/samples/security/form_csrf.php:
--------------------------------------------------------------------------------
1 | render_table("grid50000","item_id","item_nm,item_cd");
14 | ?>
--------------------------------------------------------------------------------
/samples/security/grid_csrf.php:
--------------------------------------------------------------------------------
1 | set_limit(10);
12 | $grid->render_table("grid50000","item_id","item_nm,item_cd");
13 | ?>
--------------------------------------------------------------------------------
/samples/security/scheduler_csrf.php:
--------------------------------------------------------------------------------
1 | render_table("events","event_id","start_date, end_date, event_name");
14 | ?>
--------------------------------------------------------------------------------
/samples/security/tree_csrf.php:
--------------------------------------------------------------------------------
1 | render_table("tasks","taskId","taskName","","parentId");
12 | ?>
--------------------------------------------------------------------------------
/samples/tree/01_basic.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
17 |
18 |
19 | <?php
20 |
require_once("../config.php");
21 |
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
22 |
mysql_select_db($mysql_db);
23 |
24 |
require("../../codebase/tree_connector.php");
25 |
$tree = new TreeConnector($res);
26 |
$tree->enable_log("temp.log",true);
27 |
$tree->render_table("tasks","taskId","taskName","","parentId");
28 |
?>
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/samples/tree/01_basic_connector.php:
--------------------------------------------------------------------------------
1 | render_table("tasks","taskId","taskName","","parentId");
10 | ?>
--------------------------------------------------------------------------------
/samples/tree/01p_basic_connector.php:
--------------------------------------------------------------------------------
1 | get_value("taskId")%100>1)
9 | $data->set_kids(false);
10 | else
11 | $data->set_kids(true);
12 | }
13 |
14 | require("../../codebase/tree_connector.php");
15 | $tree = new TreeConnector($res, "PDO");
16 | //
17 | $tree->event->attach("beforeRender","child_setter");
18 | $tree->render_table("tasks","taskId","taskName","","parentId");
19 | ?>
--------------------------------------------------------------------------------
/samples/tree/02_dynamic_loading.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Filtering and Autocomplete mode
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
18 |
19 |
20 | <?php
21 |
require_once("../config.php");
22 |
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
23 |
mysql_select_db($mysql_db);
24 |
25 |
require("../../codebase/tree_connector.php");
26 |
$tree = new TreeConnector($res);
27 |
$tree->enable_log("temp.log",true);
28 |
$tree->dynamic_loading(true);
29 |
$tree->render_table("tasks","taskId","taskName","","parentId");
30 |
?>
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/samples/tree/02_dynamic_loading_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(true);
10 | $tree->render_table("tasks","taskId","taskName","","parentId");
11 | ?>
--------------------------------------------------------------------------------
/samples/tree/03_sql_config.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Filtering and Autocomplete mode
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
17 |
18 |
19 | <?php
20 |
require_once("../config.php");
21 |
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
22 |
mysql_select_db($mysql_db);
23 |
24 |
require("../../codebase/tree_connector.php");
25 |
$tree = new TreeConnector($res);
26 |
$tree->enable_log("temp.log",true);
27 |
$tree->render_sql("SELECT taskId,taskName from tasks WHERE complete>49","taskId","taskName","","parentId");
28 |
?>
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/samples/tree/03_sql_config_connector.php:
--------------------------------------------------------------------------------
1 | render_sql("SELECT taskId,taskName from tasks WHERE complete>49","taskId","taskName","","parentId");
10 | ?>
--------------------------------------------------------------------------------
/samples/tree/04_custom_styles_connector.php:
--------------------------------------------------------------------------------
1 | get_value("duration")>10)
11 | $item->set_image("lock.gif");
12 | if ($item->get_value("complete")>75)
13 | $item->set_check_state(1);
14 | }
15 | $tree->event->attach("beforeRender",custom_format);
16 | $tree->render_sql("SELECT taskId,taskName,duration,complete from tasks WHERE complete>49","taskId","taskName","","parentId");
17 | ?>
--------------------------------------------------------------------------------
/samples/tree/05_save.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Filtering and Autocomplete mode
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
22 |
23 |
24 | >
25 |
26 | <?php
27 |
require_once("../config.php");
28 |
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
29 |
mysql_select_db($mysql_db);
30 |
31 |
require("../../codebase/tree_connector.php");
32 |
$tree = new TreeConnector($res);
33 |
$tree->enable_log("temp.log",true);
34 |
$tree->render_table("tasks","taskId","taskName","","parentId");
35 |
?>
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/samples/tree/05_save_connector.php:
--------------------------------------------------------------------------------
1 | render_table("tasks","taskId","taskName","","parentId");
10 | ?>
--------------------------------------------------------------------------------
/samples/tree/06_validation_connector.php:
--------------------------------------------------------------------------------
1 | get_value("taskName"))<5)
11 | $action->invalid();
12 | }
13 | $tree->event->attach("beforeProcessing",my_check);
14 | $tree->render_table("tasks","taskId","taskName","","parentId");
15 | ?>
--------------------------------------------------------------------------------
/samples/tree/08_tree_group_connector.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Group connector
5 |
6 |
7 |
8 |
9 |
10 |
11 |
20 |
21 |
22 | <?php
23 |
require_once("../config.php");
24 |
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
25 |
mysql_select_db($mysql_db);
26 |
require("../../codebase/treegroup_connector.php");
27 |
28 |
$tree = new TreeGroupConnector($res);
29 |
$tree->enable_log("temp.log",true);
30 |
$tree->render_table("products","id","product_name","","category");
31 |
32 |
?>
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/samples/tree/08_tree_group_connector.php:
--------------------------------------------------------------------------------
1 | render_table("products", "id", "product_name", "", "category");
10 |
11 | ?>
--------------------------------------------------------------------------------
/samples/tree/09_tree_multitable_connector.php:
--------------------------------------------------------------------------------
1 | setMaxLevel(3);
13 | $level = $tree->get_level();
14 |
15 | switch ($level) {
16 | case 0:
17 | $tree->render_table("projects","project_id","project_name","","");
18 | break;
19 | case 1:
20 | $tree->render_sql("SELECT teams.team_id, teams.team_name, project_team.project_id FROM teams INNER JOIN project_team ON teams.team_id=project_team.team_id", "team_id", "team_name", "", "project_id");
21 | break;
22 | case 2:
23 | $tree->render_table("developers", "developer_id", "developer_name", "", "developer_team");
24 | break;
25 | case 3:
26 | $tree->render_table("phones", "phone_id", "phone", "", "phone_developer");
27 | break;
28 | }
29 |
30 | ?>
--------------------------------------------------------------------------------
/samples/tree/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 | dhtmlxConnector for PHP :: Samples
20 |
21 | Basic init
22 | Basic init with server side child flag setting
23 | Dynamical loading
24 | Basic init with SQL configuration
25 | Rendering customization
26 | DataProcessor usage
27 | Validation
28 | Group connector
29 | Multitable connector
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/samples/treegrid/01_basic_connector.php:
--------------------------------------------------------------------------------
1 | render_table("tasks","taskId","taskName,duration,complete","","parentId");
10 | ?>
--------------------------------------------------------------------------------
/samples/treegrid/02_dynamic_loading_connector.php:
--------------------------------------------------------------------------------
1 | dynamic_loading(true);
10 | $tree->render_table("tasks","taskId","taskName,duration,complete","","parentId");
11 | ?>
--------------------------------------------------------------------------------
/samples/treegrid/03_sql_config.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | For demo purpose only :: &1
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
25 |
26 |
27 |
28 |
29 | <?php
30 |
require_once("../config.php");
31 |
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
32 |
mysql_select_db($mysql_db);
33 |
34 |
require("../../codebase/treegrid_connector.php");
35 |
$tree = new TreeGridConnector($res);
36 |
$tree->enable_log("temp.log",true);
37 |
$tree->render_sql("SELECT * from tasks WHERE complete>49","taskId","taskName,duration,complete","","parentId");
38 |
?>
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/samples/treegrid/03_sql_config_connector.php:
--------------------------------------------------------------------------------
1 | render_sql("SELECT * from tasks WHERE complete>49","taskId","taskName,duration,complete","","parentId");
10 | ?>
--------------------------------------------------------------------------------
/samples/treegrid/04_custom_styles_connector.php:
--------------------------------------------------------------------------------
1 | set_row_color($item->get_value("complete")<75?"#AAFFFF":"#FFAAFF");
11 | if ($item->get_value("duration")>10)
12 | $item->set_image("true.gif");
13 | else
14 | $item->set_image("false.gif");
15 | }
16 | $tree->event->attach("beforeRender",custom_format);
17 | $tree->render_sql("SELECT * from tasks WHERE complete>49","taskId","taskName,duration,complete","","parentId");
18 | ?>
--------------------------------------------------------------------------------
/samples/treegrid/05_live_update_connector.php:
--------------------------------------------------------------------------------
1 | enable_log("temp.log",true);
10 | $treegrid->enable_live_update("actions_table");
11 | $treegrid->render_table("tasks","taskId","taskName,duration,complete","","parentId");
12 | ?>
--------------------------------------------------------------------------------
/samples/treegrid/06_treegrid_group_connector.php:
--------------------------------------------------------------------------------
1 | render_table("products", "id", "product_name,scales,colour", "", "category");
11 |
12 | ?>
--------------------------------------------------------------------------------
/samples/treegrid/07_treegrid_multitable_connector.php:
--------------------------------------------------------------------------------
1 | setMaxLevel(3);
12 | $level = $treegrid->get_level();
13 |
14 | switch ($level) {
15 | case 0:
16 | $treegrid->render_table("projects", "project_id", "project_name, project_dsc", "", "");
17 | break;
18 | case 1:
19 | $treegrid->render_sql("SELECT teams.team_id, teams.team_name, project_team.project_id FROM teams INNER JOIN project_team ON teams.team_id=project_team.team_id", "team_id", "team_name", "", "project_id");
20 | break;
21 | case 2:
22 | $treegrid->render_table("developers", "developer_id", "developer_name,developer_email", "", "developer_team");
23 | break;
24 | case 3:
25 | $treegrid->render_table("phones", "phone_id", "phone,phone_type", "", "phone_developer");
26 | break;
27 | }
28 |
29 | ?>
--------------------------------------------------------------------------------
/samples/treegrid/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 | dhtmlxConnector for PHP :: Samples
20 |
21 | Samples are based on standard edition, so to have working TreeGrid samples you need to update files in common folder with ones from dhtmlxSuite pro
22 |
23 | Basic init
24 | Dynamic loading
25 | SQL config
26 | Custom styles
27 | Live update mode
28 | Group connector
29 | Multitable connector
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------