-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlgEditDrawingBoardItem3.html
35 lines (35 loc) · 1.43 KB
/
dlgEditDrawingBoardItem3.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
27
28
29
30
31
32
33
34
35
<form id="formEditItem">
<div class="form-group">
<table class="form-group">
<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="edText" type="text" class="form-control" />
</td>
</tr>
<tr>
<td class="col-sm-3">Font CSS: </td>
<td class="col-sm-9">
<input id="edFontCSS" 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;" /> <span> Y: </span><input id="edY" type="number" style="width:80px;" /> </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;" /> <span> H: </span><input id="edH" type="number" style="width:80px;" /> </td></tr>
<tr><td class="col-sm-3"> </td><td class="col-sm-9"> </td></tr>
</table>
</div>
</form>
<script type="text/javascript">
doSetEditData();
</script>