📄 selectall.js
字号:
/*
* Copyright (c) 2003-2006 The Open For Business Project - www.ofbiz.org
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// Check Box Select/Toggle Functions for Select/Toggle All
function toggle(e) {
e.checked = !e.checked;
}
function checkToggleDefault(e) {
checkToggle(e, "selectAllForm");
}
function checkToggle(e, formName) {
var cform = document[formName];
if (e.checked) {
var len = cform.elements.length;
var allchecked = true;
for (var i = 0; i < len; i++) {
var element = cform.elements[i];
if (element.name.substring(0, 10) == "_rowSubmit" && !element.checked) {
allchecked = false;
}
cform.selectAll.checked = allchecked;
}
} else {
cform.selectAll.checked = false;
}
}
function toggleAllDefault(e) {
toggleAll(e, "selectAllForm");
}
function toggleAll(e, formName) {
var cform = document[formName];
var len = cform.elements.length;
for (var i = 0; i < len; i++) {
var element = cform.elements[i];
if (element.name.substring(0, 10) == "_rowSubmit" && element.checked != e.checked) {
toggle(element);
}
}
}
function selectAllDefault() {
selectAll("selectAllForm");
}
function selectAll(formName) {
var cform = document[formName];
var len = cform.elements.length;
for (var i = 0; i < len; i++) {
var element = cform.elements[i];
if ((element.name == "selectAll" || element.name.substring(0, 10) == "_rowSubmit") && !element.checked) {
toggle(element);
}
}
}
function removeSelectedDefault() {
removeSelected("selectAllForm");
}
function removeSelected(formName) {
var cform = document[formName];
cform.removeSelected.value = true;
cform.submit();
}
// popup windows functions
function popUp(url, name, height, width) {
popupWindow = window.open(url, name, 'location=no,scrollbars,width=' + width + ',height=' + height);
}
function popUpSmall(url, name) {
popUp(url, name, '300', '450');
}
function popUpPrint(serverRoot, screen1) {
popUpPrint(serverRoot, screen1, null, null);
}
function popUpPrint(serverRoot, screen1, screen2) {
popUpPrint(serverRoot, screen1, screen2, null);
}
function popUpPrint(serverRoot, screen1, screen2, screen3) {
if (serverRoot == null) {
serverRoot = "";
}
var url = serverRoot + "/webtools/control/print";
if (screen1 != null) {
screen1 = screen1.replace(/\:/g, "%3A");
screen1 = screen1.replace(/\//g, "%2F");
screen1 = screen1.replace(/\#/g, "%23");
screen1 = screen1.replace(/\?/g, "%3F");
screen1 = screen1.replace(/\=/g, "%3D");
url = url + "?screen=" + screen1;
if (screen2 != null) {
screen2 = screen2.replace(/\:/g, "%3A");
screen2 = screen2.replace(/\//g, "%2F");
screen2 = screen2.replace(/\#/g, "%23");
screen2 = screen2.replace(/\?/g, "%3F");
screen2 = screen2.replace(/\=/g, "%3D");
url = url + "&screen=" + screen2;
if (screen3 != null) {
screen3 = screen3.replace(/\:/g, "%3A");
screen3 = screen3.replace(/\//g, "%2F");
screen3 = screen3.replace(/\#/g, "%23");
screen3 = screen3.replace(/\?/g, "%3F");
screen3 = screen3.replace(/\=/g, "%3D");
url = url + "&screen=" + screen3;
}
}
}
popupWindow = window.open(url, name, 'location=no,statusbar=1,menubar=0,scrollbars,width=375,height=75,top=0,left=0');
}
// hidden div functions
function getStyleObject(objectId) {
if (document.getElementById && document.getElementById(objectId)) {
return document.getElementById(objectId).style;
} else if (document.all && document.all(objectId)) {
return document.all(objectId).style;
} else if (document.layers && document.layers[objectId]) {
return document.layers[objectId];
} else {
return false;
}
}
function changeObjectVisibility(objectId, newVisibility) {
var styleObject = getStyleObject(objectId);
if (styleObject) {
styleObject.visibility = newVisibility;
return true;
} else {
return false;
}
}
// To use this in a link use a URL like this: javascript:confirmActionLink('You want to delete this party?', 'deleteParty?partyId=${partyId}')
function confirmActionLink(msg, newLocation) {
if (msg == null) {
msg = "Are you sure you want to do this?";
}
var agree = confirm(msg);
if (agree) {
if (newLocation != null) location.replace(newLocation);
return true;
} else {
return false;
}
}
// To use this in a link use a URL like this: javascript:confirmActionFormLink('You want to update this party?', 'updateParty')
function confirmActionFormLink(msg, formName) {
if (msg == null) {
msg = "Are you sure you want to do this?";
}
var agree = confirm(msg);
if (agree) {
if (formName != null) document.forms[formName].submit();
return true;
} else {
return false;
}
}
// prevents doubleposts for <submit> inputs of type "button" or "image"
function submitFormDisableButton(button) {
if (button.form.action != null && button.form.action.length > 0) {
button.disabled = true;
}
button.form.submit();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -