Welcome to mirror list, hosted at ThFree Co, Russian Federation.

multiactionform.js « js « assets - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1950608a455dfacef589520cf5491c9e26f71c4c (plain)
1
2
3
4
5
6
7
8
9
function checkAll(bool) {

	var inputs = document.getElementById('multi_form').getElementsByTagName('input');

	for (var i=0; i<inputs.length; i++) {
		if (inputs[i].type == 'checkbox')
			inputs[i].checked = bool;
	}
}