Improve tabindex for project settings forms

This commit is contained in:
Frederic Guillot
2016-11-27 18:33:00 -05:00
parent de1b9416d2
commit de2501f070
8 changed files with 48 additions and 21 deletions

View File

@@ -6,7 +6,7 @@
<?= $this->form->hidden('id', $values) ?>
<?= $this->form->label(t('Name'), 'default_swimlane') ?>
<?= $this->form->text('default_swimlane', $values, $errors, array('required', 'maxlength="50"')) ?>
<?= $this->form->text('default_swimlane', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?>
<?= $this->form->checkbox('show_default_swimlane', t('Show default swimlane'), 1, $values['show_default_swimlane'] == 1) ?>