egroupware_official/importexport/js/importexport.js

15 lines
245 B
JavaScript
Raw Normal View History

/**
* Common functions for import / export
*/
/**
* Clear a selectbox
*/
function clear_options(id) {
var list = document.getElementById(id);
for(var count = list.options.length - 1; count >= 0; count--) {
list.options[count] = null;
}
}
2011-06-02 18:50:41 +02:00