focus password field
This commit is contained in:
parent
9653c57576
commit
bdbe28b3ff
|
@ -250,7 +250,7 @@ $profileNewPwd2->setFieldSize(15);
|
||||||
$container->addElement($profileNewPwd2, true);
|
$container->addElement($profileNewPwd2, true);
|
||||||
$newProfileButton = new htmlButton('btnAddProfile', _('Add'));
|
$newProfileButton = new htmlButton('btnAddProfile', _('Add'));
|
||||||
$newProfileButton->setOnClick("jQuery('#action').val('add');showConfirmationDialog('" . _("Add profile") . "', '" .
|
$newProfileButton->setOnClick("jQuery('#action').val('add');showConfirmationDialog('" . _("Add profile") . "', '" .
|
||||||
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null);");
|
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null); document.getElementById('passwd').focus();");
|
||||||
$container->addElement($newProfileButton, true);
|
$container->addElement($newProfileButton, true);
|
||||||
$container->addElement($topicSpacer, true);
|
$container->addElement($topicSpacer, true);
|
||||||
|
|
||||||
|
@ -262,7 +262,7 @@ $oldProfileInput->setFieldSize(15);
|
||||||
$container->addElement($oldProfileInput, true);
|
$container->addElement($oldProfileInput, true);
|
||||||
$renameProfileButton = new htmlButton('btnRenameProfile', _('Rename'));
|
$renameProfileButton = new htmlButton('btnRenameProfile', _('Rename'));
|
||||||
$renameProfileButton->setOnClick("jQuery('#action').val('rename');showConfirmationDialog('" . _("Rename profile") . "', '" .
|
$renameProfileButton->setOnClick("jQuery('#action').val('rename');showConfirmationDialog('" . _("Rename profile") . "', '" .
|
||||||
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null);");
|
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null); document.getElementById('passwd').focus();");
|
||||||
$container->addElement($renameProfileButton, true);
|
$container->addElement($renameProfileButton, true);
|
||||||
$container->addElement($topicSpacer, true);
|
$container->addElement($topicSpacer, true);
|
||||||
|
|
||||||
|
@ -271,7 +271,7 @@ $container->addElement(new htmlSubTitle(_("Delete profile")), true);
|
||||||
$container->addElement(new htmlTableExtendedSelect('delfilename', $files, array(), _('Profile name'), '232'), true);
|
$container->addElement(new htmlTableExtendedSelect('delfilename', $files, array(), _('Profile name'), '232'), true);
|
||||||
$deleteProfileButton = new htmlButton('btnDeleteProfile', _('Delete'));
|
$deleteProfileButton = new htmlButton('btnDeleteProfile', _('Delete'));
|
||||||
$deleteProfileButton->setOnClick("jQuery('#action').val('delete');showConfirmationDialog('" . _("Delete profile") . "', '" .
|
$deleteProfileButton->setOnClick("jQuery('#action').val('delete');showConfirmationDialog('" . _("Delete profile") . "', '" .
|
||||||
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null);");
|
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null); document.getElementById('passwd').focus();");
|
||||||
$container->addElement($deleteProfileButton, true);
|
$container->addElement($deleteProfileButton, true);
|
||||||
$container->addElement($topicSpacer, true);
|
$container->addElement($topicSpacer, true);
|
||||||
|
|
||||||
|
@ -288,7 +288,7 @@ $profileSetPwd2->setFieldSize(15);
|
||||||
$container->addElement($profileSetPwd2, true);
|
$container->addElement($profileSetPwd2, true);
|
||||||
$setPasswordProfileButton = new htmlButton('btnSetPasswordProfile', _('Set profile password'));
|
$setPasswordProfileButton = new htmlButton('btnSetPasswordProfile', _('Set profile password'));
|
||||||
$setPasswordProfileButton->setOnClick("jQuery('#action').val('setpass');showConfirmationDialog('" . _("Set profile password") . "', '" .
|
$setPasswordProfileButton->setOnClick("jQuery('#action').val('setpass');showConfirmationDialog('" . _("Set profile password") . "', '" .
|
||||||
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null);");
|
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null); document.getElementById('passwd').focus();");
|
||||||
$container->addElement($setPasswordProfileButton, true);
|
$container->addElement($setPasswordProfileButton, true);
|
||||||
$container->addElement($topicSpacer, true);
|
$container->addElement($topicSpacer, true);
|
||||||
|
|
||||||
|
@ -299,7 +299,7 @@ $container->addElement(new htmlSubTitle(_("Change default profile")), true);
|
||||||
$container->addElement(new htmlTableExtendedSelect('defaultfilename', $files, array($defaultprofile), _('Profile name'), '234'), true);
|
$container->addElement(new htmlTableExtendedSelect('defaultfilename', $files, array($defaultprofile), _('Profile name'), '234'), true);
|
||||||
$defaultProfileButton = new htmlButton('btnDefaultProfile', _('Ok'));
|
$defaultProfileButton = new htmlButton('btnDefaultProfile', _('Ok'));
|
||||||
$defaultProfileButton->setOnClick("jQuery('#action').val('setdefault');showConfirmationDialog('" . _("Change default profile") . "', '" .
|
$defaultProfileButton->setOnClick("jQuery('#action').val('setdefault');showConfirmationDialog('" . _("Change default profile") . "', '" .
|
||||||
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null);");
|
_('Ok') . "', '" . _('Cancel') . "', 'passwordDialogDiv', 'profileForm', null); document.getElementById('passwd').focus();");
|
||||||
$container->addElement($defaultProfileButton, true);
|
$container->addElement($defaultProfileButton, true);
|
||||||
$container->addElement($topicSpacer, true);
|
$container->addElement($topicSpacer, true);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue