Viewing file: v_showCtc.php (3.1 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<table width="100%" align="center">
<tr>
<td>
<div align="center"><table width="100%">
<tr>
<td align="center"><span class="h" style="color:<?php echo $font_color_err;?>">กำหนดอาจารย์ประจำชั้น</span></td>
</tr>
<tr>
<td><br /></td>
</tr>
<tr>
<td><table class="szone">
<tr>
<td><span><b>ปีการศึกษา</b></span>
<?php
$js = "id=\"acY\" onChange=\"sendPost('myform', {'acY':this.value}, 'ctc_show')\"";
echo form_dropdown('acY', $rs_tmc, $acY, $js);?></td>
</tr>
<tr>
<td><table class="headCol">
<tr>
<th><span>ชั้นปี</span></th>
<?php
foreach ($rs_sy->result() as $row_sy) {
?>
<th class="editCol"><span><?php echo $row_sy->syCode;?></span></th>
<?php
}
?>
</tr>
<?php
if ($rs) {
foreach ($rs as $key => $val) {
$row_cur = $rs[$key]['qu_cur']->row();
echo "<tr onmouseover=\"bgColor='".$tr_color_even."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">";
?>
<td height="22"><span class="hand" onClick="sendPost('hidform', {'curId':<?php echo $row_cur->curId;?>,'acY':<?php echo $acY;?>}, 'ctc_detail', {})"><?php echo $row_cur->curName;?></span></td>
<?php
foreach ($rs[$key] as $syId => $val) {
$cls = 'red';
$methodStart = 'add';
$res = 'A';
if (is_int($syId)) {
if ($rs[$key][$syId]) {
$cls = 'green';
$methodStart = 'edit';
$res = 'E';
}
?>
<td align="center"><span class="hand" onClick="sendPost('hidform', {'curId':<?php echo $row_cur->curId;?>,'syId':<?php echo $syId;?>,'acY':<?php echo $acY;?>}, 'ctc_input')" style="color:<?php echo $cls;?>"><b><?php echo $res;?></b></a></td>
<?php
} // end if
} // end foreach
?>
</tr>
<?php
} // end foreach
} // end if rs
?>
</table></td>
</tr>
</table></td>
</tr>
</table></div>
<br></td>
</tr>
<tr>
<td><table class="mark">
<tr>
<td class="coltd_mark"><span style="color:<?php echo $font_color_err;?>">หมายเหตุ : </b></span></td>
<td><span style="color:red"><b>A </b></span>
<span style="color:<?php echo $font_color_err;?>">หมายถึง ยังไม่ได้กำหนดอาจารย์ประจำชั้น</span></td>
</tr>
<tr>
<td class="coltd_mark"></td>
<td><span style="color:green"><b>E </b></span>
<span style="color:<?php echo $font_color_err;?>">หมายถึง ได้กำหนดอาจารย์ประจำชั้นแล้ว</span</td>
</tr>
<tr>
<td class="coltd_mark"></td>
<td><span style="color:<?php echo $font_color_err;?>">นำเมาส์ไปคลิกที่ชื่อหลักสูตรเพื่อดูรายชื่ออาจารย์ประจำชั้น</span></td>
</tr>
</table></td>
</tr>
</table>
|