私はextjsグリッドパネルに3つのカラムuser、email、passwordを持っています。 rowclickイベントで、パスワードを復号化したいと思います。私はパスワードフィールドの列の設定で 'テキスト'にタイプを設定することでこれを試しています。extjsはrowclickリスナーでグリッドセルタイプを変更します
しかし、私は復号化されたパスワードを見ることができません。
私に解決策を提案してください。
ありがとうございます。 ExtJSのグリッドで
Ext.create('Ext.data.Store', {
storeId: 'simpsonsStore',
fields: ['name', 'email', 'phone'],
data: [{
"name": "Lisa",
"email": "[email protected]",
"pass": "555-111-1224"
}, {
"name": "Bart",
"email": "[email protected]",
"pass": "555--1234"
}, {
"name": "Homer",
"email": "[email protected]",
"pass": "-222-1244"
}, {
"name": "Marge",
"email": "[email protected]",
"pass": "111-1254"
}]
});
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
store: Ext.data.StoreManager.lookup('simpsonsStore'),
listeners: {
rowclick: function (grid, record, e) {
var _this = this;
showPass('text');
function showPass(val) {
_this.getEl().component.columns[2].setConfig('type', "text");
}
}
},
columns: [{
header: 'Name',
dataIndex: 'name',
editor: 'textfield'
}, {
header: 'Email',
dataIndex: 'email',
flex: 1
}, {
header: "Password",
dataIndex: 'pass',
inputType: 'password',
renderer: function(val) {
var toReturn = "";
for (var x = 0; x < val.length; x++) {
toReturn += "●";
}
return toReturn;
}
}],
selType: 'rowmodel',
height: 200,
width: 400,
renderTo: Ext.getBody()
});
見てください.. https://www.sencha.com/forum/showthread.php?49464-ベストウェイ - インプリメンテーション - フォーム - クライアント - サイド - 暗号化 - 暗号化 – UDID