ブラウザがパスワードを表示して保存できるフォームを作成する必要があります。多くのソリューションを見つけました。たとえば、Firefox では、ユーザーowlnessのソリューションは非常に便利で便利です。しかし、Chrome には何も表示されず、コンソールには次のように表示されます: Uncaught TypeError: Cannot call method 'addUnits' of null
<form id="auth-form" action="" method="POST">
<input id="auth-username" type="text" name="username" class="x-hidden">
<input id="auth-password" type="password" name="password" class="x-hidden">
<input id="auth-submit" type="submit" class="x-hidden">
</form>
...
new Ext.FormPanel({
region: 'south',
//id: 'login',
el: 'auth-form',
autoShow: true,
height: 125,
title: 'Login',
padding: 5,
frame: true,
labelWidth: 80,
defaultType: 'textfield',
defaults: {
allowBlank: false,
width: 250
},
items: [{
fieldLabel: 'Username',
el: 'auth-username',
autoShow: true,
inputType: 'text',
//id: 'username',
name: 'username'
}, {
fieldLabel: 'Password',
el: 'auth-password',
autoShow: true,
inputType: 'password',
//id: 'password',
name: 'password'
}],
// auto focus ...
// submit on enter ...
buttons: [{
text: 'Login',
type: 'submit',
//el: 'auth-submit',
//autoShow: true,
handler: function (button) {
var b = button; // scope
var f = b.ownerCt.ownerCt.getForm();
if (!f.isValid()) {
return;
}
f.standardSubmit = true;
b.ownerCt.disable();
MY.ajax.login({
scope: this,
success: function (res) {
f.submit();
win.close();
},
failure: function () {
b.ownerCt.enable();
},
params: f.getFieldValues()
});
}
}]
})
どうすればいいですか?