endif; ?>
<h2 id="components"><?php echo ts('Components'); ?></h2>
+<p class="comp-error-required"><?php echo ts('At least one component must be enabled.'); ?></p>
+
<div>
<?php foreach ($model->getField('components', 'options') as $comp => $label): ?>
<input class="comp-cb sr-only" style="display: none;" type="checkbox" name="civisetup[components][<?php echo $comp; ?>]" id="civisetup[components][<?php echo $comp; ?>]" <?php echo in_array($comp, $model->components) ? 'checked' : '' ?>>
<strong><?php echo ts('Tip'); ?></strong>:
<?php echo ts('Not sure? That\'s OK. After installing, you can enable and disable components at any time.'); ?>
</p>
+
+<script type="text/javascript">
+ csj$(function($){
+ $('.comp-cb').useValidator(function(){
+ $('.comp-error-required').toggleError($('.comp-cb:checked').length == 0);
+ });
+ });
+</script>