bgneal@45
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
bgneal@45
|
2 <html xmlns="http://www.w3.org/1999/xhtml">
|
bgneal@45
|
3 <head>
|
bgneal@45
|
4 <title>{#table_dlg.row_title}</title>
|
bgneal@45
|
5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
bgneal@45
|
6 <script type="text/javascript" src="../../utils/mctabs.js"></script>
|
bgneal@45
|
7 <script type="text/javascript" src="../../utils/form_utils.js"></script>
|
bgneal@45
|
8 <script type="text/javascript" src="../../utils/validate.js"></script>
|
bgneal@45
|
9 <script type="text/javascript" src="../../utils/editable_selects.js"></script>
|
bgneal@45
|
10 <script type="text/javascript" src="js/row.js"></script>
|
bgneal@45
|
11 <link href="css/row.css" rel="stylesheet" type="text/css" />
|
bgneal@45
|
12 </head>
|
bgneal@45
|
13 <body id="tablerow" style="display: none" role="application">
|
bgneal@45
|
14 <form onsubmit="updateAction();return false;" action="#">
|
bgneal@45
|
15 <div class="tabs">
|
bgneal@45
|
16 <ul>
|
bgneal@45
|
17 <li id="general_tab" class="current" aria-controls="general_panel"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#table_dlg.general_tab}</a></span></li>
|
bgneal@45
|
18 <li id="advanced_tab" aria-controls="advanced_panel"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#table_dlg.advanced_tab}</a></span></li>
|
bgneal@45
|
19 </ul>
|
bgneal@45
|
20 </div>
|
bgneal@45
|
21
|
bgneal@45
|
22 <div class="panel_wrapper">
|
bgneal@45
|
23 <div id="general_panel" class="panel current">
|
bgneal@45
|
24 <fieldset>
|
bgneal@45
|
25 <legend>{#table_dlg.general_props}</legend>
|
bgneal@45
|
26
|
bgneal@45
|
27 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
|
bgneal@45
|
28 <tr>
|
bgneal@45
|
29 <td><label for="rowtype">{#table_dlg.rowtype}</label></td>
|
bgneal@45
|
30 <td class="col2">
|
bgneal@45
|
31 <select id="rowtype" name="rowtype" class="mceFocus">
|
bgneal@45
|
32 <option value="thead">{#table_dlg.thead}</option>
|
bgneal@45
|
33 <option value="tbody">{#table_dlg.tbody}</option>
|
bgneal@45
|
34 <option value="tfoot">{#table_dlg.tfoot}</option>
|
bgneal@45
|
35 </select>
|
bgneal@45
|
36 </td>
|
bgneal@45
|
37 </tr>
|
bgneal@45
|
38
|
bgneal@45
|
39 <tr>
|
bgneal@45
|
40 <td><label for="align">{#table_dlg.align}</label></td>
|
bgneal@45
|
41 <td class="col2">
|
bgneal@45
|
42 <select id="align" name="align">
|
bgneal@45
|
43 <option value="">{#not_set}</option>
|
bgneal@45
|
44 <option value="center">{#table_dlg.align_middle}</option>
|
bgneal@45
|
45 <option value="left">{#table_dlg.align_left}</option>
|
bgneal@45
|
46 <option value="right">{#table_dlg.align_right}</option>
|
bgneal@45
|
47 </select>
|
bgneal@45
|
48 </td>
|
bgneal@45
|
49 </tr>
|
bgneal@45
|
50
|
bgneal@45
|
51 <tr>
|
bgneal@45
|
52 <td><label for="valign">{#table_dlg.valign}</label></td>
|
bgneal@45
|
53 <td class="col2">
|
bgneal@45
|
54 <select id="valign" name="valign">
|
bgneal@45
|
55 <option value="">{#not_set}</option>
|
bgneal@45
|
56 <option value="top">{#table_dlg.align_top}</option>
|
bgneal@45
|
57 <option value="middle">{#table_dlg.align_middle}</option>
|
bgneal@45
|
58 <option value="bottom">{#table_dlg.align_bottom}</option>
|
bgneal@45
|
59 </select>
|
bgneal@45
|
60 </td>
|
bgneal@45
|
61 </tr>
|
bgneal@45
|
62
|
bgneal@45
|
63 <tr id="styleSelectRow">
|
bgneal@45
|
64 <td><label for="class">{#class_name}</label></td>
|
bgneal@45
|
65 <td class="col2">
|
bgneal@45
|
66 <select id="class" name="class" class="mceEditableSelect">
|
bgneal@45
|
67 <option value="" selected="selected">{#not_set}</option>
|
bgneal@45
|
68 </select>
|
bgneal@45
|
69 </td>
|
bgneal@45
|
70 </tr>
|
bgneal@45
|
71
|
bgneal@45
|
72 <tr>
|
bgneal@45
|
73 <td><label for="height">{#table_dlg.height}</label></td>
|
bgneal@45
|
74 <td class="col2"><input name="height" type="text" id="height" value="" size="7" maxlength="7" onchange="changedSize();" class="size" /></td>
|
bgneal@45
|
75 </tr>
|
bgneal@45
|
76 </table>
|
bgneal@45
|
77 </fieldset>
|
bgneal@45
|
78 </div>
|
bgneal@45
|
79
|
bgneal@45
|
80 <div id="advanced_panel" class="panel">
|
bgneal@45
|
81 <fieldset>
|
bgneal@45
|
82 <legend>{#table_dlg.advanced_props}</legend>
|
bgneal@45
|
83
|
bgneal@45
|
84 <table role="presentation" border="0" cellpadding="0" cellspacing="4">
|
bgneal@45
|
85 <tr>
|
bgneal@45
|
86 <td class="column1"><label for="id">{#table_dlg.id}</label></td>
|
bgneal@45
|
87 <td><input id="id" name="id" type="text" value="" style="width: 200px" /></td>
|
bgneal@45
|
88 </tr>
|
bgneal@45
|
89
|
bgneal@45
|
90 <tr>
|
bgneal@45
|
91 <td><label for="style">{#table_dlg.style}</label></td>
|
bgneal@45
|
92 <td><input type="text" id="style" name="style" value="" style="width: 200px;" onchange="changedStyle();" /></td>
|
bgneal@45
|
93 </tr>
|
bgneal@45
|
94
|
bgneal@45
|
95 <tr>
|
bgneal@45
|
96 <td class="column1"><label for="dir">{#table_dlg.langdir}</label></td>
|
bgneal@45
|
97 <td>
|
bgneal@45
|
98 <select id="dir" name="dir" style="width: 200px">
|
bgneal@45
|
99 <option value="">{#not_set}</option>
|
bgneal@45
|
100 <option value="ltr">{#table_dlg.ltr}</option>
|
bgneal@45
|
101 <option value="rtl">{#table_dlg.rtl}</option>
|
bgneal@45
|
102 </select>
|
bgneal@45
|
103 </td>
|
bgneal@45
|
104 </tr>
|
bgneal@45
|
105
|
bgneal@45
|
106 <tr>
|
bgneal@45
|
107 <td class="column1"><label for="lang">{#table_dlg.langcode}</label></td>
|
bgneal@45
|
108 <td>
|
bgneal@45
|
109 <input id="lang" name="lang" type="text" value="" style="width: 200px" />
|
bgneal@45
|
110 </td>
|
bgneal@45
|
111 </tr>
|
bgneal@45
|
112
|
bgneal@45
|
113 <tr>
|
bgneal@45
|
114 <td class="column1"><label for="backgroundimage">{#table_dlg.bgimage}</label></td>
|
bgneal@45
|
115 <td>
|
bgneal@45
|
116 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
bgneal@45
|
117 <tr>
|
bgneal@45
|
118 <td><input id="backgroundimage" name="backgroundimage" type="text" value="" style="width: 200px" onchange="changedBackgroundImage();" /></td>
|
bgneal@45
|
119 <td id="backgroundimagebrowsercontainer"> </td>
|
bgneal@45
|
120 </tr>
|
bgneal@45
|
121 </table>
|
bgneal@45
|
122 </td>
|
bgneal@45
|
123 </tr>
|
bgneal@45
|
124
|
bgneal@45
|
125 <tr>
|
bgneal@45
|
126 <td class="column1"><label for="bgcolor" id="bgcolor_label">{#table_dlg.bgcolor}</label></td>
|
bgneal@45
|
127 <td>
|
bgneal@45
|
128 <span role="group" aria-labelledby="bgcolor_label">
|
bgneal@45
|
129 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
bgneal@45
|
130 <tr>
|
bgneal@45
|
131 <td><input id="bgcolor" name="bgcolor" type="text" value="" size="9" onchange="updateColor('bgcolor_pick','bgcolor');changedColor();" /></td>
|
bgneal@45
|
132 <td id="bgcolor_pickcontainer"> </td>
|
bgneal@45
|
133 </tr>
|
bgneal@45
|
134 </table>
|
bgneal@45
|
135 </span>
|
bgneal@45
|
136 </td>
|
bgneal@45
|
137 </tr>
|
bgneal@45
|
138 </table>
|
bgneal@45
|
139 </fieldset>
|
bgneal@45
|
140 </div>
|
bgneal@45
|
141 </div>
|
bgneal@45
|
142
|
bgneal@45
|
143 <div class="mceActionPanel">
|
bgneal@45
|
144 <div>
|
bgneal@45
|
145 <select id="action" name="action">
|
bgneal@45
|
146 <option value="row">{#table_dlg.row_row}</option>
|
bgneal@45
|
147 <option value="odd">{#table_dlg.row_odd}</option>
|
bgneal@45
|
148 <option value="even">{#table_dlg.row_even}</option>
|
bgneal@45
|
149 <option value="all">{#table_dlg.row_all}</option>
|
bgneal@45
|
150 </select>
|
bgneal@45
|
151 </div>
|
bgneal@45
|
152
|
bgneal@45
|
153 <input type="submit" id="insert" name="insert" value="{#update}" />
|
bgneal@45
|
154 <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
bgneal@45
|
155 </div>
|
bgneal@45
|
156 </form>
|
bgneal@45
|
157 </body>
|
bgneal@45
|
158 </html>
|