2006-07-25 08:36:10 +02:00
|
|
|
addLoadEvent(function() {
|
2006-03-29 03:51:55 +02:00
|
|
|
if (!theList.theList) return false;
|
|
|
|
document.forms.addcat.submit.onclick = function(e) {return killSubmit('theList.ajaxAdder("cat", "addcat");', e); };
|
2006-09-13 23:39:53 +02:00
|
|
|
theList.addComplete = function(what, where, update, transport) {
|
|
|
|
var name = getNodeValue(transport.responseXML, 'name');
|
|
|
|
var id = transport.responseXML.getElementsByTagName(what)[0].getAttribute('id');
|
2006-07-25 08:36:10 +02:00
|
|
|
var options = document.forms['addcat'].category_parent.options;
|
|
|
|
options[options.length] = new Option(name, id);
|
|
|
|
};
|
|
|
|
theList.delComplete = function(what, id) {
|
|
|
|
var options = document.forms['addcat'].category_parent.options;
|
|
|
|
for ( var o = 0; o < options.length; o++ )
|
|
|
|
if ( id == options[o].value )
|
|
|
|
options[o] = null;
|
|
|
|
};
|
|
|
|
});
|