From dceac44cfdd6e1b8496ed819354768b7dbc63b12 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 26 Oct 2011 18:46:20 -0500 Subject: Fixed problem clearing validation error on checkboxes. The IPA.checkboxes_widget has been modified such that it performs validation when the checkboxes are clicked. This will also clear any validation errors. --- install/ui/widget.js | 1 + 1 file changed, 1 insertion(+) (limited to 'install/ui/widget.js') diff --git a/install/ui/widget.js b/install/ui/widget.js index feaf7b20..3dd9b619 100644 --- a/install/ui/widget.js +++ b/install/ui/widget.js @@ -924,6 +924,7 @@ IPA.checkboxes_widget = function (spec) { var input = $('input[name="'+that.name+'"]', that.container); input.change(function() { that.set_dirty(that.test_dirty()); + that.validate(); }); that.create_error_link(container); -- cgit