We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#468 의 이슈와 같은 건데.. 쪽지목록 등 여러 상황에서 checkbox 한꺼번에 선택되는 현상 패치입니다. XE.checkboxToggleAll 부분 script 오류입니다.
실제 예전 버전과 소스 자체는 달라진게 없는듯한데 XE 1.7.4 에서 안 되는걸보면 jquery 쪽 버전이 올라가면서 문제가 생긴듯한데....
common/js/xe.min.js 파일에서
find("input[name="+b+"]:checkbox"):a("input[name="+b+"]:checkbox") 를 아래걸로 교체
find("input[name='"+b+"']:checkbox"):a("input[name='"+b+"']:checkbox")
common/js/xe.js 파일기준으로는
58번째줄에
if(options.wrap) { obj = $(options.wrap).find('input[name='+itemName+']:checkbox'); } else { obj = $('input[name='+itemName+']:checkbox'); }
를 아래걸로 교체
if(options.wrap) { obj = $(options.wrap).find('input[name="'+itemName+'"]:checkbox'); } else { obj = $('input[name="'+itemName+'"]:checkbox'); }
The text was updated successfully, but these errors were encountered:
!!! 👍 감사합니다
Sorry, something went wrong.
classes/display/HTMLDisplayHandler.php 에서 확인해 보니 디버그 모드에서 불러오는 파일에 xe.js 는 없네요.
common.js 62, 64 line 을 수정했습니다.
xe.min.js 파일은 따로 준비해서 커밋하겠습니다.
#471 checkbox 다중선택시 문제 처리
37f5b93
#468 이슈는 닫았습니다. 여기서 처리 하는게 낫겠네요 :)
#471 xe.min.js
caec71e
akasima
No branches or pull requests
#468
의 이슈와 같은 건데..
쪽지목록 등 여러 상황에서 checkbox 한꺼번에 선택되는 현상 패치입니다.
XE.checkboxToggleAll 부분 script 오류입니다.
실제 예전 버전과 소스 자체는 달라진게 없는듯한데 XE 1.7.4 에서 안 되는걸보면
jquery 쪽 버전이 올라가면서 문제가 생긴듯한데....
common/js/xe.min.js 파일에서
find("input[name="+b+"]:checkbox"):a("input[name="+b+"]:checkbox")
를 아래걸로 교체
find("input[name='"+b+"']:checkbox"):a("input[name='"+b+"']:checkbox")
common/js/xe.js 파일기준으로는
58번째줄에
if(options.wrap) {
obj = $(options.wrap).find('input[name='+itemName+']:checkbox');
} else {
obj = $('input[name='+itemName+']:checkbox');
}
를 아래걸로 교체
if(options.wrap) {
obj = $(options.wrap).find('input[name="'+itemName+'"]:checkbox');
} else {
obj = $('input[name="'+itemName+'"]:checkbox');
}
The text was updated successfully, but these errors were encountered: