mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
일단은 문서 admin 화면에서의 기능과 통일
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2563 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c4c334b318
commit
01c1a632f7
2 changed files with 9 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
function toggleAll() {
|
||||
function doToggleAll() {
|
||||
var fo_obj = xGetElementById('fo_list');
|
||||
for(var i=0;i<fo_obj.length;i++) {
|
||||
if(fo_obj[i].name == 'cart'){
|
||||
|
|
@ -9,4 +9,11 @@ function toggleAll() {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function doCheckAll() {
|
||||
var fo_obj = xGetElementById('fo_list');
|
||||
for(var i=0;i<fo_obj.length;i++) {
|
||||
if(fo_obj[i].name == 'cart') fo_obj[i].checked = true;
|
||||
}
|
||||
}
|
||||
|
|
@ -38,7 +38,7 @@
|
|||
<th scope="col">{$lang->no}</th>
|
||||
<th scope="col">
|
||||
<div class="nowrap">
|
||||
<input type="checkbox" onclick="toggleAll(); return false;" />
|
||||
<input type="checkbox" onclick="doCheckAll(); return false;" />
|
||||
<select name="module_srl" class="mid_list" id="module_srl">
|
||||
<option value="">{$lang->module}</option>
|
||||
<!--@foreach($mid_list as $key => $val)-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue