annotate WebContent/jscripts/tiny_mce/plugins/table/row.htm @ 8:11baadcdd2c8

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