Структурирования информации с помощью PHP и MySQL
szHTML
function setFocus()
idEditbox.focus()
function appendHTML(szHTML)
if (g state.bMode)
idEditbox.document.body.insertAdjacentHTML( beforeEnd ,szHTML)
else
idEditbox.document.body.insertAdjacentText( beforeEnd ,szHTML)
function setBGColor(szValue)
g state.bgColor szValue
if (g state.bMode)
idEditbox.document.body.bgColor g state.bgColor
function getBGColor()
var szRet g state.bgColor
return szRet
function setDefaultStyle(szValue)
g state.css szValue
if (g state.bMode)
idEditbox.document.body.style.cssText g state.css
function getDefaultStyle()
var oRet g state.css
return oRet
function setSkin(szSkin)
if (szSkin null)
document.styleSheets.skin.cssText g state.defaultSkin
else
document.styleSheets.skin.cssText szSkin
document.styleSheets.skin.disabled false
function setPopupSkin(szSkin)
if (szSkin null)
document.styleSheets.popupSkin.cssText g state.popupSkin
else
document.styleSheets.popupSkin.cssText szSkin
CPopup Init()
function setToolbar(id,g state)
var el document.all[id]
if (el)
el.style.display (g state) : none
if (id tbmode )
setSize()
function setLinks(arLinks)
g state.aLinks arLinks
function setBindings(aBindings)
if ((aBindings) (aBindings.length 0))
g state.aBindings aBindings
for (var iField DBSelect.length-1; iField 0; iField--)
DBSelect[iField] null
for (var iField 0; iField
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |


