diff options
author | Kirylka <kirylanoshko@gmail.com> | 2015-03-31 17:56:47 +0300 |
---|---|---|
committer | Kirylka <kirylanoshko@gmail.com> | 2015-03-31 17:56:47 +0300 |
commit | f5f99c335707d9b11d40f1eb0f6ddb5a993fd31a (patch) | |
tree | d9c0d3532ec9f0f2fb68e31d2611282ae0642181 /samples/dataview/01_static_loading.html | |
parent | 458f0aead573842f1df00ce2ae00334c27f66585 (diff) | |
download | connector-php-f5f99c335707d9b11d40f1eb0f6ddb5a993fd31a.zip connector-php-f5f99c335707d9b11d40f1eb0f6ddb5a993fd31a.tar.gz connector-php-f5f99c335707d9b11d40f1eb0f6ddb5a993fd31a.tar.bz2 |
Creating a new connector for yii2.
Diffstat (limited to 'samples/dataview/01_static_loading.html')
-rw-r--r-- | samples/dataview/01_static_loading.html | 29 |
1 files changed, 0 insertions, 29 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> - |