|
|
@@ -13,12 +13,12 @@
|
|
|
* === =========== ========== =============================================
|
|
|
* 1.0 2021.02.22 sowon 최초 작성
|
|
|
*******************************************************************************
|
|
|
- -->s
|
|
|
-<div class="modalPopup" data-width="960" data-height="300" id="popupPollVoteRate">
|
|
|
+ -->
|
|
|
+<div class="modalPopup" data-width="960" data-height="400" id="popupPollVoteRate">
|
|
|
<div id="panel" class="panelStyle">
|
|
|
<!-- TITLE -->
|
|
|
<div class="panelTitle">
|
|
|
- <strong>POLL 투표율</strong>
|
|
|
+ <h2>POLL 투표율</h2>
|
|
|
<button type="button" class="close"
|
|
|
onclick="uifnPopupClose('popupPollVoteRate');">
|
|
|
<em class="fa fa-times"></em>
|
|
|
@@ -32,41 +32,29 @@
|
|
|
<input type="hidden" name="pollSq" />
|
|
|
<ul class="boxContent">
|
|
|
<li class="boxContentTop">
|
|
|
- <table class="frmStyle">
|
|
|
+ <table class="frmStyle" style="overflow:auto;">
|
|
|
+ <colgroup>
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ <col width="">
|
|
|
+ </colgroup>
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
- <td>
|
|
|
- <div id="questionDiv" class="btn_left"
|
|
|
- style="width: 100%; height: 200px; overflow: yes; overflow-x: auto; overflow-y: auto;">
|
|
|
- <table class="tableStyle" id="questionTable"
|
|
|
- style="overflow-x: auto; overflow-y: auto;">
|
|
|
- <colgroup>
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- <col width="">
|
|
|
- </colgroup>
|
|
|
- <tbody>
|
|
|
- <tr>
|
|
|
- <td>문항</td>
|
|
|
- <td>투표수</td>
|
|
|
- <td>투표율</td>
|
|
|
- </tr>
|
|
|
- <tr th:each="list : ${pollAList}" align="center">
|
|
|
- <td>[[${list.name}]]</td>
|
|
|
- <td>[[${list.voteCnt}]]</td>
|
|
|
- <td><label>[[${list.voteRate}]]%</label></td>
|
|
|
- </tr>
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
- </td>
|
|
|
+ <th>문항</th>
|
|
|
+ <th>투표수(명)</th>
|
|
|
+ <th>투표율</th>
|
|
|
+ </tr>
|
|
|
+ <tr th:each="list : ${pollAList}" align="center">
|
|
|
+ <td>[[${list.name}]]</td>
|
|
|
+ <td>[[${list.voteCnt}]]</td>
|
|
|
+ <td><label>[[${list.voteRate}]]%</label></td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|