mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
17523934 * r5068의 XE.checkboxToggleAll() 수정으로 인한 교체
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5069 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f19a281368
commit
1eeaeada66
7 changed files with 7 additions and 7 deletions
|
|
@ -74,7 +74,7 @@
|
|||
<p>{$lang->about_addon_mid}</p>
|
||||
<!--@foreach($mid_list as $module_category_srl => $modules)-->
|
||||
<div class="module_category_title">
|
||||
<input type="checkbox" onclick="XE.checkboxToggleAll('mid_list', { wrapId:'section_{$module_category_srl}' });" />
|
||||
<input type="checkbox" onclick="XE.checkboxToggleAll('mid_list', { wrap:'section_{$module_category_srl}' });" />
|
||||
<!--@if($modules->title)-->
|
||||
{$modules->title}
|
||||
<!--@else-->
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<table cellspacing="0" class="list">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="check first-child"><div><input name="check_all" type="checkbox" onclick="XE.checkboxToggleAll('friend_srl_list', { wrapId:'fo_friend_list' }); return false;" /><div></th>
|
||||
<th scope="col" class="check first-child"><div><input name="check_all" type="checkbox" onclick="XE.checkboxToggleAll('friend_srl_list', { wrap:'fo_friend_list' }); return false;" /><div></th>
|
||||
<th scope="col" class="friendGroup">
|
||||
<div>
|
||||
<select name="jumpMenu" id="jumpMenu" class="w100">
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@
|
|||
<table cellspacing="0" class="list">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="check first-child"><div><input name="check_all" type="checkbox" onclick="XE.checkboxToggleAll('message_srl_list', { wrapId:'fo_message_list' }); return false;" /></div></th>
|
||||
<th scope="col" class="check first-child"><div><input name="check_all" type="checkbox" onclick="XE.checkboxToggleAll('message_srl_list', { wrap:'fo_message_list' }); return false;" /></div></th>
|
||||
<th scope="col" class="user"><div>
|
||||
<!--@if($message_type == "S")-->
|
||||
{$lang->receiver}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
**/
|
||||
|
||||
// 이벤트 등록
|
||||
xAddEventListener(window,'load',doCallCounter);
|
||||
jQuery(doCallCounter);
|
||||
|
||||
// counter 모듈을 호출하는 함수
|
||||
function doCallCounter() {
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
<p>{$lang->about_component_mid}</p>
|
||||
<!--@foreach($mid_list as $module_category_srl => $modules)-->
|
||||
<div class="module_category_title">
|
||||
<input type="checkbox" onclick="XE.checkboxToggleAll('mid_list', { wrapId:'section_{$module_category_srl}' }); return false;" />
|
||||
<input type="checkbox" onclick="XE.checkboxToggleAll('mid_list', { wrap:'section_{$module_category_srl}' }); return false;" />
|
||||
<!--@if($modules->title)-->
|
||||
{$modules->title}
|
||||
<!--@else-->
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<tr class="bg{($no+1)%2+1}">
|
||||
<td class="registDate">{$val->getRegdate("Y-m-d H:i:s")}</td>
|
||||
<td class="title">
|
||||
<div><a href="#" onclick="toggleDisplay('saved_document_{$val->document_srl}','block'); return false;">{$val->getTitle()}</a></div>
|
||||
<div><a href="#" onclick="jQuery('#saved_document_{$val->document_srl}').toggle(); return false;">{$val->getTitle()}</a></div>
|
||||
<div id="saved_document_{$val->document_srl}" class="saved_content" style="display:none;">{$val->getContent(false)}</div>
|
||||
</td>
|
||||
<td><a href="#" onclick="doDeleteSavedDocument('{$val->document_srl}','{$lang->confirm_delete}'); return false;" class="button"><span>{$lang->cmd_delete}</span></a></td>
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
<tr class="bg{($no+1)%2+1}">
|
||||
<td class="registDate">{$val->getRegdate("Y-m-d H:i:s")}</td>
|
||||
<td class="subject">
|
||||
<div><a href="#" onclick="toggleDisplay('saved_document_{$val->document_srl}','block'); setFixedPopupSize(); return false;">{$val->getTitle()}</a></div>
|
||||
<div><a href="#" onclick="jQuery('#saved_document_{$val->document_srl}').toggle(); setFixedPopupSize(); return false;">{$val->getTitle()}</a></div>
|
||||
<div id="saved_document_{$val->document_srl}" class="saved_content" style="display:none;">{$val->getContent(false)}</div>
|
||||
</td>
|
||||
<td><a href="#" onclick="doDocumentSelect('{$val->document_srl}'); return false;" class="button"><span>{$lang->cmd_select}</span></a></td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue