aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/apps/indicator/static/plugins/thickbox/README
diff options
context:
space:
mode:
authorAlvin Li <liweitianux@gmail.com>2013-08-22 15:18:58 +0800
committerAlvin Li <liweitianux@gmail.com>2013-08-22 15:18:58 +0800
commit3f1d09f3b5b86157ccf9f47eef69a065be6153a4 (patch)
tree84d424db169cea7daff7dc2ed7e045de15ec86eb /97suifangqa/apps/indicator/static/plugins/thickbox/README
parent3ef1e03e4273544cce177ce7fa0e0ab75eded990 (diff)
download97dev-3f1d09f3b5b86157ccf9f47eef69a065be6153a4.tar.bz2
* added latest full package of 'jquery-ui' plugin, v1.10.3;
* improved 'thickbox' plugin to use 'jquery-1.9.x'; * upgraded 'SheetDefault.html', 'NewDeleteIndex.html' and other pages to use 'jquery-1.9.x'; * improved 'IndexDesc.html' to deal with the problem of no related annotation found; * 'indicator.tools.get_record()' added param 'number', and updated the format of return data; * added 'get_num_record()' and 'get_num_record_std()' to 'indicator.tools'; * improved 'indicator.views.ajax_get_card_data_chart()', now can get data by 'num' or by 'date'; * improved 'indicator.views.ajax_get_card_data_table()', to provide the needed data requested from 'detail_card'; * improved js function 'chart_getdata_draw()' in 'SheetDefault.html'; * 'card_chart.js': renamed 'redraw_chart()' to 'detail_chart_getdata_draw()', and updated to get data by type; * updated 'table' of 'detail_card' in 'SheetDefault.html'; * improved js function 'get_card_data_table()' for providing and displaying record data in 'detail_card' table. TODO: * add/delete/edit record data
Diffstat (limited to '97suifangqa/apps/indicator/static/plugins/thickbox/README')
-rw-r--r--97suifangqa/apps/indicator/static/plugins/thickbox/README20
1 files changed, 20 insertions, 0 deletions
diff --git a/97suifangqa/apps/indicator/static/plugins/thickbox/README b/97suifangqa/apps/indicator/static/plugins/thickbox/README
new file mode 100644
index 0000000..b829acb
--- /dev/null
+++ b/97suifangqa/apps/indicator/static/plugins/thickbox/README
@@ -0,0 +1,20 @@
+Before you can implement ThickBox make sure the page that invokes ThickBox has a valid DTD. This is required for ThickBox to look and function correctly.
+
+1. ThickBox requires the jQuery JavaScript library; because of this, you will need to include the jquery.js file in the head element of your web page, followed by the thickbox.js file (NOTE: jquery.js must come first in the source order). Example below:
+
+<script type="text/javascript" src="path-to-file/jquery.js"></script>
+<script type="text/javascript" src="path-to-file/thickbox.js"></script>
+
+Once you have included the .js files, open thickbox.js or thickbox-compressed.js and locate the tb_pathToImage variable at the top of the page. Once you have found it, make sure to change the value of tb_pathToImage to the path where the loadingAnimation.gif file is located on your own server.
+
+2. Include the ThickBox CSS file in your web page. As of version 3.1 you will also need to update the path to the macFFBgHack.png in the thickbox.css file. Example options below:
+
+<link rel="stylesheet" href="path-to-file/thickbox.css" type="text/css" media="screen" />
+
+Or
+
+<style type="text/css" media="all">@import "path-to-file/thickbox.css";</style>
+
+Or, open the thickbox.css file and copy and paste the styles into an existing style sheet. Be aware that the ThickBox CSS file will remove the browsers default padding and margin for all elements.
+
+3. View the examples to learn the many different ways to use and invoke ThickBox functionality. \ No newline at end of file