diff options
Diffstat (limited to 'samples/dataview')
-rw-r--r-- | samples/dataview/01_static_loading.html | 29 | ||||
-rw-r--r-- | samples/dataview/01_static_loading.php | 11 | ||||
-rw-r--r-- | samples/dataview/02_dynamic_loading.html | 31 | ||||
-rw-r--r-- | samples/dataview/02_dynamic_loading.php | 13 | ||||
-rw-r--r-- | samples/dataview/03_adding.html | 65 | ||||
-rw-r--r-- | samples/dataview/03_adding.php | 11 | ||||
-rw-r--r-- | samples/dataview/index.html | 25 |
7 files changed, 0 insertions, 185 deletions
diff --git a/samples/dataview/01_static_loading.html b/samples/dataview/01_static_loading.html deleted file mode 100644 index 45ece36..0000000 --- a/samples/dataview/01_static_loading.html +++ /dev/null @@ -1,29 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html> -<head> - <title>Static loading</title> - <script src="../dhtmlx/dhtmlx.js" type="text/javascript"></script> - <link rel="STYLESHEET" type="text/css" href="../dhtmlx/dhtmlx.css"> - <style type="text/css" media="screen"> - body { background-color:#EBEBEB; }; - </style> -</head> -<body> - <h1>Static loading</h1> - <p>All data is loaded at once</p> - <div id="data_container" style="border:1px solid #A4BED4; background-color:white; width:710px;height:392px;"></div> - <script> - data = new dhtmlXDataView({ - container:"data_container", - type:{ - template:"<span class='dhx_strong'>{obj.Maintainer}</span>{obj.Package} <span class='dhx_light'>{obj.Version}</span>", - height:35 - } - }); - data.load("01_static_loading.php"); - </script> - -</body> -</html> - diff --git a/samples/dataview/01_static_loading.php b/samples/dataview/01_static_loading.php deleted file mode 100644 index 10b8ee6..0000000 --- a/samples/dataview/01_static_loading.php +++ /dev/null @@ -1,11 +0,0 @@ -<?php - require_once("../../codebase/db_pdo.php"); - require_once("../../codebase/dataview_connector.php"); - require_once("../config.php"); - - $conn = new PDO($mysql_server,$mysql_user,$mysql_pass); - - - $data = new DataViewConnector($conn); - $data->render_sql(" SELECT * FROM packages_plain WHERE Id < 1000","Id","Package,Version,Maintainer"); -?>
\ No newline at end of file diff --git a/samples/dataview/02_dynamic_loading.html b/samples/dataview/02_dynamic_loading.html deleted file mode 100644 index 4a846fa..0000000 --- a/samples/dataview/02_dynamic_loading.html +++ /dev/null @@ -1,31 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html> -<head> - <title>Dynamic loading</title> - <script src="../dhtmlx/dhtmlx.js" type="text/javascript"></script> - <link rel="STYLESHEET" type="text/css" href="../dhtmlx/dhtmlx.css"> - <style type="text/css" media="screen"> - body { background-color:#EBEBEB; }; - </style> -</head> -<body> - <h1>Dynamic loading</h1> - <p>Data is loaded to the DataView on demand</p> - - <div id="data_container" style="border:1px solid #A4BED4; background-color:white; width:710px;height:392px;"></div> - <br> - <script> - data = new dhtmlXDataView({ - container:"data_container", - type:{ - template:"<span class='dhx_strong'>{obj.Maintainer}</span>{obj.Package} <span class='dhx_light'>{obj.Version}</span>", - height:35 - } - }); - data.load("02_dynamic_loading.php"); - </script> - -</body> -</html> - diff --git a/samples/dataview/02_dynamic_loading.php b/samples/dataview/02_dynamic_loading.php deleted file mode 100644 index 858c2b7..0000000 --- a/samples/dataview/02_dynamic_loading.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - - require_once("../../codebase/db_pdo.php"); - require_once("../../codebase/dataview_connector.php"); - require_once("../config.php"); - - $conn = new PDO($mysql_server,$mysql_user,$mysql_pass); - - - $data = new DataViewConnector($conn); - $data->dynamic_loading(50); - $data->render_table("packages_plain","Id","Package,Version,Maintainer"); -?>
\ No newline at end of file diff --git a/samples/dataview/03_adding.html b/samples/dataview/03_adding.html deleted file mode 100644 index 6c08152..0000000 --- a/samples/dataview/03_adding.html +++ /dev/null @@ -1,65 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!--conf -<sample in_favorites="true"> - <product version="1.0" edition="std"/> - <modifications> - <modified date="080205"/> - </modifications> -<sampledescription><![CDATA[ ]]></sampledescription></sample> - --> - -<html> -<head> - <title>Connecting to database</title> - <script src="../dhtmlx/dhtmlx.js" type="text/javascript"></script> - <link rel="STYLESHEET" type="text/css" href="../dhtmlx/dhtmlx.css"> - <style type="text/css" media="screen"> - body { background-color:#EBEBEB; }; - </style> -<body> - <h1>Connecting to database</h1> - - <form style="float:right;"> - Product <input type="text" id="p_name" value="dhtmlxDataView"><br> - Version <input type="text" id="v_name" value="3.0"><br> - Maintainer <input type="text" id="m_name" value="Ivan"><br> - <input type="button" value="Add →" onclick='add_data()'> - <hr> - <input type="button" value="Remove selected →" onclick='remove_data()'> - </form> - - <div id="data_container" style="border:1px solid #A4BED4; background-color:white;width:596px;height:396px;"></div> - <script> - data = new dhtmlXDataView({ - - container:"data_container", - edit:true, - type:{ - template:"{obj.Package} : {obj.Version}<br/>{obj.Maintainer}", - template_edit:"<input class='dhx_item_editor' bind='obj.Package'>", - height:40 - } - }); - data.load("03_adding.php"); - - var dp = new dataProcessor("03_adding.php"); - dp.init(data); - - function add_data(argument) { - data.add({ - Package: document.getElementById("p_name").value, - Version: document.getElementById("v_name").value, - Maintainer: document.getElementById("m_name").value, - },0) - } - function remove_data(){ - data.remove(data.getSelected()); - } - </script> - - - -</body> -</html> - diff --git a/samples/dataview/03_adding.php b/samples/dataview/03_adding.php deleted file mode 100644 index 3bad14c..0000000 --- a/samples/dataview/03_adding.php +++ /dev/null @@ -1,11 +0,0 @@ -<?php - require_once("../../codebase/db_pdo.php"); - require_once("../../codebase/dataview_connector.php"); - require_once("../config.php"); - - $conn = new PDO($mysql_server,$mysql_user,$mysql_pass); - - - $data = new DataViewConnector($conn); - $data->render_table("packages_small","Id","Package,Version,Maintainer"); -?>
\ No newline at end of file diff --git a/samples/dataview/index.html b/samples/dataview/index.html deleted file mode 100644 index fd99f9a..0000000 --- a/samples/dataview/index.html +++ /dev/null @@ -1,25 +0,0 @@ -<html> - <head></head> - <style type="text/css" media="screen"> - *{ - font-family:Tahoma; - } - div,li{ - font-size:10pt; - } - div{ - padding-bottom:20px; - } - li{ - padding-left:50px; - padding-bottom:10px; - } - </style> - <body> - <h2>dhtmlxConnector for PHP :: Samples</h2> - <li><a href="01_static_loading.html">Static loading</a></li> - <li><a href="02_dynamic_loading.html">Dynamic loading</a></li> - <li><a href="03_adding.html">Adding</a></li> - </body> -</html> - |