Viewing file:      v_searchCourseCd.php (3.92 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<script type="text/javascript" src="<?php echo base_url();?>js/jQuery-1.5.js"></script> <script language="JavaScript">     function checkall() {         $('*:checkbox').attr('checked',true);     }     function saveCrs(){                  //$('#popform').attr("action",'<?php echo $this->config->item("rg_folder")."curpbri/cs_save_cd1"; ?>');         //document.popform.action = '<?php echo $this->config->item("rg_folder")."curpbri/cs_save_cd1"; ?>';             $("input:hidden[name=fsave]").val(true);             $('#popform').submit();         // window.opener ก็คือตัวที่เปิดมันขึ้นมานั่นเอง         //window.opener.document.frmTest.tbTest.value=strContent;              //window.opener.location.reload();          //window.opener.changeCur(cur,Math.random())         //window.opener('<? echo base_url().$this->config->item("rg_folder")."curpbri/"; ?>' + cur);               }     $(document).ready(function(){         <?             if(!Empty($ins)){         ?>             var cur = $("input:hidden[name=curId]").val();                          window.opener.changeCur(cur,<?=mt_rand();?>);             window.close();         <?             }         ?>     }); </script> <?php     $attributes = array('id' => 'popform');     echo form_open($this->config->item("rg_folder")."curpbri/cs_searchCrs/", $attributes);//$curId/$cdId1/$cdId2
          echo form_hidden('curId', $curId);         echo form_hidden('cdId1', $cdId1);         echo form_hidden('cdId2', $cdId2);         echo form_hidden('fsave', false); ?> <table width="98%" align="center">     <tr><td align="center"><font size="2"><b>ค้นหารายวิชา      <?php             $rs_cd = $cs->num_rows() ? $cs->row() : NULL;             echo getval('cdName', $rs_cd);     ?></font></td></tr>     <tr><td align="center"><hr /></td></tr>     <tr>         <td align="right"><?php echo form_open($this->config->item("rg_folder")."curriculum/crs_show");?><font size="2"><b>รหัสรายวิชา</b>         <input type="text" name="crsCodeSearch" size="10" />         <b>ชื่อรายวิชา</b></font>         <input type="text" name="crsNameSearch" />         <input type="submit" name="search" value="ค้นหา" />         <?php echo form_close();?></td>     </tr>
  <?php     if(isset($crs)){         if($crs->num_rows() > 0){ ?>     <tr ><td>         <table class="headCol">             <tr>                 <th>เลือก</th>                 <th>รายวิชา</th>                 <th>หย่วยกิต</th>             </tr> <?php         $i = 0;         foreach($crs->result() AS $row){             echo "<tr onmouseover=\"bgColor='".$tr_color_even."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">"; ?>                 <td align='center'><? echo form_checkbox("crs[]", $row->crsId, false); ?></td>                 <td><? echo nbs(4).$row->crsCode.nbs(2).explodeSquare($row->crsName);?><br/>                 <font size='1' color='#808080' style='font-weight:normal'>                 <? echo nbs(4).$row->crsCodeE.nbs(2).$row->crsNameE;?>                 </font></td>                 <td align='center'><? echo $row->crsUnit;?></td>             </tr> <?php             $i++;         } ?>
          </table>     </td></tr>     <tr >         <td> <?php     $js = 'onClick="checkall()"';     echo form_button('mybutton', 'เลือกทั้งหมด', $js);      $data = array(         'name' => 'button',         'id' => 'button',         'value' => 'true',         'type' => 'reset',         'content' => 'ยกเลิกทั้งหมด'     );     echo form_button($data); ?>         </td>     </tr>     <tr >         <td align='center'> <?php     $js = 'onClick="saveCrs()"';     echo form_button('save', 'บันทึก', $js); ?>         </td>     </tr> <?php                  }else{ ?>     <tr><td> </td></tr>     <tr><td align='center'><font size='1' color='#FF0000' style='font-weight:normal'>ไม่พบรายวิชาที่ค้นหา</font></td></tr> <?         }     } ?> </table> </form>
  |