형태와 내가 양식에서 데이터를 얻을 필요가 몇 필드에서 데이터를 얻을 수 Extjs4을 정의되지 않습니다 및 방법은 버튼이 있습니다 :기록은 내가 버튼으로 윈도우가 입력이
enter: function (button) {
var win = button.up('window'),
form = win.down('form'),
record = form.getRecord(),
values = form.getValues();
record.set(values);
win.close();
this.getUsersStore().sync();
여기에 기록 정의되지 않았습니다. 내가 뭘 잘못 했니? ///////////////////////////////////////////////////////////////////
Ext.define('ExtMVC.view.portlet.Login', {
extend: 'Ext.window.Window',
alias: 'widget.login',
layout: 'fit',
title: 'LogIn',
width: 300,
height: 150,
autoShow: true,
store: 'LoginModels',
initComponent: function() {
this.items = [
{
xtype: 'form',
items: [
{
xtype: 'textfield',
name: 'Name',
fieldLabel: 'Name',
style: { 'margin': '10px' },
},
{
xtype: 'textfield',
name: 'Password',
fieldLabel: 'Password',
style: { 'margin': '10px' },
}
]
}
];
this.buttons = [
{
text: 'Enter',
action: 'enter',
//handler: this.enter
},
{
text: 'Cancel',
scope: this,
handler: this.close
},
{
text: 'Sing in',
scope: this,
handler: this.close
}
];
this.callParent(arguments);
}
});
작동하지 않는 설정() - NULL – TimurYakov
게시 얻을 양식 코드 –
내 게시물 //// – TimurYakov