2005-01-09 15:10:12 +00:00
|
|
|
function popUpProperties(inobj) {
|
|
|
|
op = window.open();
|
|
|
|
op.document.open('text/plain');
|
|
|
|
for (objprop in inobj) {
|
|
|
|
op.document.write(objprop + ' => ' + inobj[objprop] + '\n');
|
|
|
|
}
|
|
|
|
op.document.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
function fillmessagebox(text) {
|
|
|
|
document.form.message.value = text;
|
|
|
|
}
|
|
|
|
|
|
|
|
function copyrichtext(textname) {
|
|
|
|
/// Legacy stub for old editor - to be removed soon
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkall() {
|
|
|
|
void(d=document);
|
|
|
|
void(el=d.getElementsByTagName('INPUT'));
|
|
|
|
for(i=0;i<el.length;i++)
|
|
|
|
void(el[i].checked=1)
|
|
|
|
}
|
|
|
|
|
2005-03-06 12:00:46 +00:00
|
|
|
function checknone() {
|
|
|
|
void(d=document);
|
|
|
|
void(el=d.getElementsByTagName('INPUT'));
|
|
|
|
for(i=0;i<el.length;i++)
|
|
|
|
void(el[i].checked=0)
|
|
|
|
}
|
|
|
|
|
2005-01-09 15:10:12 +00:00
|
|
|
function lockoptions(form, master, subitems) {
|
|
|
|
// subitems is an array of names of sub items
|
|
|
|
// requires that each item in subitems has a
|
|
|
|
// companion hidden item in the form with the
|
|
|
|
// same name but prefixed by "h"
|
|
|
|
if (eval("document."+form+"."+master+".checked")) {
|
|
|
|
for (i=0; i<subitems.length; i++) {
|
|
|
|
unlockoption(form, subitems[i]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i=0; i<subitems.length; i++) {
|
|
|
|
lockoption(form, subitems[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function lockoption(form,item) {
|
|
|
|
eval("document."+form+"."+item+".disabled=true");/* IE thing */
|
|
|
|
eval("document."+form+".h"+item+".value=1");
|
|
|
|
}
|
|
|
|
|
|
|
|
function unlockoption(form,item) {
|
|
|
|
eval("document."+form+"."+item+".disabled=false");/* IE thing */
|
|
|
|
eval("document."+form+".h"+item+".value=0");
|
|
|
|
}
|
2005-03-08 04:22:38 +00:00
|
|
|
|
|
|
|
function submitFormById(id) {
|
|
|
|
var theform = document.getElementById(id);
|
|
|
|
if(!theform) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(theform.tagName != 'FORM') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(!theform.onsubmit || theform.onsubmit()) {
|
|
|
|
return theform.submit();
|
|
|
|
}
|
|
|
|
}
|
2005-03-18 14:36:10 +00:00
|
|
|
|
|
|
|
function select_all_in(elTagName, elId, elClass) {
|
|
|
|
var inputs = document.getElementsByTagName('INPUT');
|
|
|
|
inputs = filterByParent(inputs, function(el) {return findParentNode(el, elTagName, elId, elClass);});
|
|
|
|
for(var i = 0; i < inputs.length; ++i) {
|
|
|
|
if(inputs[i].type == 'checkbox') {
|
|
|
|
inputs[i].checked = 'checked';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function deselect_all_in(elTagName, elId, elClass) {
|
|
|
|
var inputs = document.getElementsByTagName('INPUT');
|
|
|
|
inputs = filterByParent(inputs, function(el) {return findParentNode(el, elTagName, elId, elClass);});
|
|
|
|
for(var i = 0; i < inputs.length; ++i) {
|
|
|
|
if(inputs[i].type == 'checkbox') {
|
|
|
|
inputs[i].checked = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function confirm_if(expr, message) {
|
|
|
|
if(!expr) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return confirm(message);
|
|
|
|
}
|