-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdlgAddDrawingBoardItem3.html
26 lines (26 loc) · 1.29 KB
/
dlgAddDrawingBoardItem3.html
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
<form id="formEditItem">
<div class="form-group">
<table>
<tr><td colspan="2"> Item Type </td></tr>
<tr>
<td class="col-sm-3"> Type : </td>
<td class="col-sm-9">
<select id="edType" onchange="" class="form-control">
<option value="tText">Text</option>
<option value="tRect">Rectangle</option>
</select>
</td>
</tr>
<tr>
<td class="col-sm-3">Text : </td>
<td class="col-sm-9">
<input id="edFontCSS" name="edFontCSS" type="hidden" value="12px Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace" />
<input id="edText" type="text" class="form-control" />
</td>
</tr>
<tr><td class="col-sm-3"> Color: </td><td class="col-sm-9"> <input id="edColorA" type="color" /> </td></tr>
<tr><td class="col-sm-3"> X Y </td><td class="col-sm-9">X: <input id="edX" type="number" style="width:80px;" value="10" /> <span> Y: </span><input id="edY" type="number" style="width:80px;" value="10" /> </td></tr>
<tr><td class="col-sm-3"> W H </td><td class="col-sm-9">w: <input id="edW" type="number" style="width:80px;" value="10"/> <span> H: </span><input id="edH" type="number" style="width:80px;" value="10" /> </td></tr>
</table>
</div>
</form>