Add version files and new GIF images for UI components

This commit is contained in:
2025-04-03 06:26:44 +07:00
commit 663c28a2ea
5219 changed files with 772528 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<!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>
<script src="../../codebase/connector.js" type="text/javascript" charset="utf-8"></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>

View File

@ -0,0 +1,10 @@
<?php
require_once("../../codebase/dataview_connector.php");
require_once("../config.php");
$conn = mysql_connect($mysql_server,$mysql_user,$mysql_pass);
mysql_select_db($mysql_db);
$data = new DataViewConnector($conn);
$data->render_sql(" SELECT * FROM packages_plain WHERE Id < 1000","Id","Package,Version,Maintainer");
?>

View File

@ -0,0 +1,32 @@
<!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>
<script src="../../codebase/connector.js" type="text/javascript" charset="utf-8"></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>

View File

@ -0,0 +1,12 @@
<?php
require_once("../../codebase/dataview_connector.php");
require_once("../config.php");
$conn = mysql_connect($mysql_server,$mysql_user,$mysql_pass);
mysql_select_db($mysql_db);
$data = new DataViewConnector($conn);
$data->dynamic_loading(50);
$data->render_table("packages_plain","Id","Package,Version,Maintainer");
?>

View File

@ -0,0 +1,67 @@
<!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>
<script src="../dhtmlx/dhtmlxdataprocessor.js" type="text/javascript" charset="utf-8"></script>
<script src="../../codebase/connector.js" type="text/javascript" charset="utf-8"></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 &rarr;" onclick='add_data()'>
<hr>
<input type="button" value="Remove selected &rarr;" 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>

View File

@ -0,0 +1,10 @@
<?php
require_once("../../codebase/dataview_connector.php");
require_once("../config.php");
$conn = mysql_connect($mysql_server,$mysql_user,$mysql_pass);
mysql_select_db($mysql_db);
$data = new DataViewConnector($conn);
$data->render_table("packages_small","Id","Package,Version,Maintainer");
?>

View File

@ -0,0 +1,25 @@
<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>