mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-03 01:03:28 +09:00
#486 게시글 다수 선택시 정상적으로 선택되지 않는 문제 해결
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4353 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e81b6af95a
commit
de22070cee
3 changed files with 28 additions and 19 deletions
|
|
@ -605,11 +605,19 @@ function clickCheckBoxAll(form, name) {
|
|||
}
|
||||
|
||||
/* 관리자가 문서를 관리하기 위해서 선택시 세션에 넣음 */
|
||||
var addedDocument = new Array();
|
||||
function doAddDocumentCart(obj) {
|
||||
var srl = obj.value;
|
||||
addedDocument[addedDocument.length] = srl;
|
||||
setTimeout(function() { callAddDocumentCart(addedDocument.length); }, 100);
|
||||
}
|
||||
|
||||
function callAddDocumentCart(document_length) {
|
||||
if(addedDocument.length<1 || document_length != addedDocument.length) return;
|
||||
var params = new Array();
|
||||
params["srl"] = srl;
|
||||
params["srls"] = addedDocument.join(",");
|
||||
exec_xml("document","procDocumentAdminAddCart", params, null);
|
||||
addedDocument = new Array();
|
||||
}
|
||||
|
||||
/* ff의 rgb(a,b,c)를 #... 로 변경 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue