mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 08:09:58 +09:00
trackback 어드민 페이지에서 상태 다중 토글 기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2562 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
43066ad7ec
commit
c4c334b318
2 changed files with 15 additions and 1 deletions
12
modules/trackback/tpl/js/trackback_admin.js
Normal file
12
modules/trackback/tpl/js/trackback_admin.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
function toggleAll() {
|
||||
var fo_obj = xGetElementById('fo_list');
|
||||
for(var i=0;i<fo_obj.length;i++) {
|
||||
if(fo_obj[i].name == 'cart'){
|
||||
if( fo_obj[i].checked == true ){
|
||||
fo_obj[i].checked = false;
|
||||
} else {
|
||||
fo_obj[i].checked = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue