- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 Extjs 4.2
我已经阅读了许多文档、谷歌、论坛,试图了解码件如何加载以及放置它们的位置,例如商店、模型等,但仍然感到困惑。
这是我正在努力工作的一个例子
应用说明
包含联系人、项目、人员等的主菜单,应用程序首先加载以显示静态非数据驱动,然后单击联系人,显示带有联系人列表的网格。然后用户单击联系人行并显示弹出编辑 View 。
在contacteditview 中,联系人被加载到表单中,此外该表单还有一个组合框来加载ContactTypes 存储。 ContactType 应设置为该联系人记录的 contacttype 值。
考虑到这是一个大型应用程序,我只想在需要时加载数据,即显示 View ,这样做的常用方法是什么。
以下是我的一些困惑
this.getStore('Contacts')
手动获取商店.这工作正常,但是使用 Controller 的商店和模型数组属性的目的是什么。我在调试器中看到,如果我不使用存储/模型属性,则会对这些 js 文件发出 get 请求。App Code
Ext.Loader.setConfig({
enabled: true,
paths: {
'Ext.ux': "lib/extux",
'Wakanda': "lib/extux/wakanda"
}
});
Ext.application({
name: 'SimplyFundraising',
autoCreateViewport: true,
requires: ['Ext.ux.Router', // Require the UX
'Wakanda.model'
],
controllers: ['Contacts'],
});
Contacts Controller
Ext.define('SimplyFundraising.controller.Contacts', {
extend: 'Ext.app.Controller',
views: ['contacts.List', 'contacts.Edit'],
init: function() {
this.control({
'contactslist': {
itemdblclick: this.editContact,
removeitem: this.removeContact
},
'contactslist > toolbar > button[action=create]': {
click: this.onCreateContact
},
// 'contactsadd button[action=save]': {
// click: this.doCreateContact
// },
'contactsedit button[action=save]': {
click: this.updateContact
}
});
},
list: function() {
var mystore = this.getStore('Contacts')
mystore.load();
// mystore.proxy.extraParams = { $expand: 'ContactType'};
// var User = this.getContactModel();
// User.load(258, {
// success: function (user) {
// console.log("Loaded user 258: " + user.get('lastName'));
// }
// });
},
editContact: function(grid, record) {
var view = Ext.widget('contactsedit');
view.down('form').loadRecord(record);
this.addnew = false
},
removeContact: function(Contact) {
Ext.Msg.confirm('Remove Contact ' + Contact.data.lastName, 'Are you sure?', function(button) {
if (button == 'yes') {
this.getContactsStore().remove(Contact);
}
}, this);
},
onCreateContact: function() {
var view = Ext.widget('contactsedit');
this.addnew = true
},
// doCreateContact: function (button) {
// var win = button.up('window'),
// form = win.down('form'),
// values = form.getValues(),
// store = this.getContactsStore();
// if (form.getForm().isValid()) {
// store.add(values);
// win.close();
// }
// },
updateContact: function(button) {
var win = button.up('window'),
form = win.down('form'),
record = form.getRecord(),
values = form.getValues(),
store = this.getContactsStore();
if (form.getForm().isValid()) {
if (this.addnew == true) {
store.add(values);
} else {
record.set(values);
}
win.close();
}
}
});
Contacts view list
Ext.define('SimplyFundraising.view.contacts.List', {
extend: 'Ext.grid.Panel',
xtype: 'contactslist',
title: 'All Contacts',
store: 'Contacts',
autoHeight: true,
autoScroll: true,
viewConfig: {
loadMask: true
},
initComponent: function() {
this.tbar = [{
text: 'Create Contact',
action: 'create'
}];
this.columns = [{
header: 'Id',
dataIndex: '__KEY',
width: 50
}, {
header: 'First Name',
dataIndex: 'firstName',
flex: 1
}, {
header: 'Middle Name',
dataIndex: 'middleName',
flex: 1
}, {
header: 'Last Name',
dataIndex: 'lastName',
flex: 1
},
{
header: 'Type',
dataIndex: 'ContactType.name',
flex: 1
}
];
this.addEvents('removeitem');
this.actions = {
removeitem: Ext.create('Ext.Action', {
text: 'Remove Contact',
handler: function() {
this.fireEvent('removeitem', this.getSelected())
},
scope: this
})
};
var contextMenu = Ext.create('Ext.menu.Menu', {
items: [this.actions.removeitem]
});
this.on({
itemcontextmenu: function(view, rec, node, index, e) {
e.stopEvent();
contextMenu.showAt(e.getXY());
return false;
}
});
this.callParent(arguments);
},
getSelected: function() {
var sm = this.getSelectionModel();
var rs = sm.getSelection();
if (rs.length) {
return rs[0];
}
return null;
}
});
Contacts view edit
Ext.define('SimplyFundraising.view.contacts.Edit', {
extend: 'Ext.window.Window',
xtype: 'contactsedit',
title: 'Edit Contacts',
layout: 'fit',
autoShow: true,
initComponent: function() {
this.items = [{
xtype: 'form',
bodyStyle: {
background: 'none',
padding: '10px',
border: '0'
},
items: [{
xtype: 'textfield',
name: 'firstName',
allowBlank: false,
fieldLabel: 'Name'
}, {
xtype: 'textfield',
name: 'lastName',
allowBlank: false,
fieldLabel: 'Last Name'
}, {
xtype: 'combobox',
fieldLabel: 'Contact Type',
name: 'contactType',
store: 'ContactTypes',
displayField: 'name',
typeAhead: true,
queryMode: 'local',
emptyText: 'Select a type...'
}]
}];
this.buttons = [{
text: 'Save',
action: 'save'
}, {
text: 'Cancel',
scope: this,
handler: this.close
}];
this.callParent(arguments);
}
});
最佳答案
不要错过 ExtJs。我知道,这可能会很痛苦......
对于你的问题,我是这样解决的:
我有一个列出意大利自治市的网格。我想按国家、地区和省进行过滤,所以我在停靠的容器上放置了三个组合框。在 Controller 中,我有:
,init : function (application) {
this.control({
,"#municipalitiesGrid": { afterrender: this.onMunicipalitiesGridAfterRender }
});
}
,onMunicipalitiesGridAfterRender: function(grid, opts) {
console.info('GVD.controller.Geo->onMunicipalitiesGridAfterRender');
var store = grid.getStore(),
comboCountriesMunicipalities = this.getComboCountriesMunicipalities(),
storeCountries = comboCountriesMunicipalities.getStore(),
comboRegionsMunicipalities = this.getComboRegionsMunicipalities(),
storeRegions = comboRegionsMunicipalities.getStore(),
comboProvincesMunicipalities = this.getComboProvincesMunicipalities(),
storeProvinces = comboProvincesMunicipalities.getStore();
store.clearFilter(true);
storeCountries.clearFilter(true);
storeRegions.clearFilter(true);
storeProvinces.clearFilter(true);
storeRegions.filter("idCountry", 114); // 114 = Italia
storeProvinces.filter("idRegion",8); // 8 = Emilia Romagna
store.filter("idProvince", 37); // 37 = Bologna
storeCountries.load({
scope: this,
callback: function(records, operation, success) {
storeRegions.load({
scope: this,
callback: function(records, operation, success) {
storeProvinces.load({
scope: this,
callback: function(records, operation, success) {
store.load({
scope: this,
callback: function(records, operation, success) {
comboCountriesMunicipalities.setValue(114); // 114 = Italia
comboRegionsMunicipalities.setValue(8); // 8 = Emilia Romagna
comboProvincesMunicipalities.setValue(37); // 37 = Bologna
}
});
}
});
}
});
}
});
}
Ext.define('GVD.store.Municipalities', {
extend: 'Ext.data.Store'
,constructor: function(cfg) {
console.info('GVD.store.Municipalities->constructor');
var me = this;
cfg = cfg || {};
me.callParent([Ext.apply({
autoLoad: false
,autoSync: true
,model: 'GVD.model.Municipalities'
,pageSize: 20
}, cfg)]);
}
});
Ext.define('GVD.model.Municipalities', {
extend: 'Ext.data.Model',
fields: [
{ name: 'id', type: 'int' },
{ name: 'idIstat', type: 'int' },
{ name: 'idCountry', type: 'int' },
{ name: 'idRegion', type: 'int' },
{ name: 'idProvince', type: 'int' },
{ name: 'name', type: 'string' },
{ name: 'chief_town', type: 'boolean' },
{ name: 'altitude_zone', type: 'int' },
{ name: 'altitude', type: 'int' },
{ name: 'coastal', type: 'int' },
{ name: 'mountain', type: 'int' },
{ name: 'surface', type: 'double' },
{ name: 'residents', type: 'int' },
{ name: 'icon', type: 'string' }
]
,proxy: {
api: {
create: 'Municipalities.create'
,destroy: 'Municipalities.destroy'
,read: 'Municipalities.read'
,update: 'Municipalities.update'
}
,reader: {
root: 'data'
,totalProperty: 'totalCount'
,type: 'json'
}
,type: 'direct'
}
});
Ext.define('GVD.view.system.geo.ListMunicipalities', {
autoScroll: true
,constrain: true
,dockedItems: [{
xtype: 'topBar'
},{
items: [{
allowBlank: true
,fieldLabel: 'Nazione'
,flex: 1
,id: 'comboCountriesMunicipalities'
,labelAlign: 'right'
,labelWidth: 50
,listConfig: {
getInnerTpl: function() {
return '<img src="resources/images/countries/16/{icon}16.gif" align="left"> {italianName}';
}
}
,store: Ext.create('GVD.store.Countries', {pageSize: 999})
,xtype: 'comboCountries'
},{
allowBlank: true
,fieldLabel: 'Regione'
,flex: 1
,id: 'comboRegionsMunicipalities'
,labelAlign: 'right'
,labelWidth: 50
,listConfig: {
getInnerTpl: function() {
return '<img src="resources/images/regions/16/{icon}16.gif" align="left"> {name}';
}
}
,store: Ext.create('GVD.store.Regions', {pageSize: 999})
,xtype: 'comboRegions'
},{
allowBlank: true
,fieldLabel: 'Provincia'
,flex: 1
,id: 'comboProvincesMunicipalities'
,labelAlign: 'right'
,labelWidth: 50
,listConfig: {
getInnerTpl: function() {
return '<img src="resources/images/provinces/16/{icon}16.gif" align="left"> {name}';
}
}
,store: Ext.create('GVD.store.Provinces', {pageSize: 999})
,xtype: 'comboProvinces'
}]
,layout: 'hbox'
,xtype: 'container'
}, {
dock: 'bottom'
,itemId: 'municipalitiesPagingToolbar'
,store: 'Municipalities'
,xtype: 'pagingToolBar'
}]
,extend: 'Ext.window.Window'
,height: 400
,icon: 'resources/images/GVD/municipalities16.png'
,id: 'listMunicipalities'
,items: [{
columns: [{
xtype: 'rownumberer'
},{
align: 'right'
,dataIndex: 'id'
,format: '000'
,renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
return '<img src="resources/images/municipalities/16/'+record.data.icon+'16.gif" align="left"> '+record.data.id;
}
,text: 'Id'
,width: 70
,xtype: 'numbercolumn'
},{
align: 'right'
,dataIndex: 'idIstat'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'numeric' }
,format: '000000000'
,text: 'Istat'
,width: 80
,xtype: 'numbercolumn'
},{
dataIndex: 'name'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'string' }
,flex: 1
,text: 'Denominazione'
,xtype: 'gridcolumn'
},{
dataIndex: 'chief_town'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'numeric' }
,text: 'Capoluogo'
,width: 40
,xtype: 'numbercolumn'
},{
dataIndex: 'altitude_zone'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'numeric' }
,format: '0'
,text: 'Zona alt.'
,width: 40
,xtype: 'numbercolumn'
},{
align: 'right'
,dataIndex: 'altitude'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'numeric' }
,format: '0000'
,text: 'Altitudine'
,width: 40
,xtype: 'numbercolumn'
},{
dataIndex: 'coastal'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'numeric' }
,format: '0'
,text: 'Costiero'
,width: 40
,xtype: 'numbercolumn'
},{
dataIndex: 'mountain'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'numeric' }
,format: '0'
,text: 'Montano'
,width: 40
,xtype: 'numbercolumn'
},{
align: 'right'
,dataIndex: 'surface'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'numeric' }
,format: '000,000.00'
,text: 'Superficie'
,xtype: 'numbercolumn'
},{
align: 'right'
,dataIndex: 'residents'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'numeric' }
,format: '0,000,000'
,text: 'residenti'
,xtype: 'numbercolumn'
},{
dataIndex: 'icon'
,editor: { allowBlank: false, selectOnFocus: true }
,filter: { type: 'string' }
,flex: 1
,text: 'Icona'
,xtype: 'gridcolumn'
}]
,columnLines: true
,emptyText: '<font color="red"><b>Nessun comune in archivio</b></font>'
,features: [
Ext.create('GVD.ux.grid.FiltersFeature', {
encode: true,
ftype: 'filters',
local: false,
menuFilterText: 'Filtro'
})
]
,id: 'municipalitiesGrid'
,plugins: [ Ext.create('Ext.grid.plugin.RowEditing', { ptype: 'rowediting' }) ]
,selModel: { selType: 'checkboxmodel', mode: 'MULTI' },store: 'Provinces'
,store: 'Municipalities'
,viewConfig: {
loadingText: 'Caricamento dati'
,stripeRows: true
,trackOver: true
}
,xtype: 'grid'
}]
,layout: {
align: 'stretch'
,type: 'vbox'
}
,margin: '0 0 2 0'
,maximizable: true
,minimizable: true
,requires: [
'GVD.ux.combo.Countries'
,'GVD.ux.combo.Provinces'
,'GVD.ux.combo.Regions'
,'GVD.ux.PrintButton'
,'GVD.ux.toolbar.BottomBar'
,'GVD.ux.toolbar.PagingToolBar'
,'GVD.ux.toolbar.TopBar'
]
,singleWindow: true
,title: 'Elenco comuni'
,tools: [
{ xtype: 'printButton', title: 'Elenco Comuni', tooltip: 'Stampa elenco' }
,{ type: 'help', xtype: 'tool', tooltip: 'Guida sulla funzione' }
]
,width: 760
});
关于extjs - 了解如何在 Extjs 4.2 MVC 模式中引用/加载/实例化商店模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16508978/
我对 React 真的很陌生,需要问。 我可以有一个 ReactJs Redux store在库中,然后在也有 Redux 商店的应用程序中使用该库? 他们俩都这样做: ..A
我有两个商店版本的 Magento 安装:商店 A 和商店 B。当您转到“mydomain.com”时,我收到以下错误消息: 'There was no Home CMS page configure
我有一个按钮,单击该按钮时,将使用提供的 url 创建一个 JSONstore。然后将商店加载到网格中。如果再次单击该按钮,它会再次添加所有信息(因此会列出两次)。我想要这样,当用户单击按钮时,它会清
已结束。 这个问题是 off-topic .它目前不接受答案。 想要改进这个问题? Update the question所以它是on-topic堆栈溢出。 关闭 9 年前。 Improve this
我在 main.js 中进行 session API 调用,并将响应中的值用作我的根存储的初始值。在 vuex 中,它是这样处理的, DataService.getSession() .then(
我正尝试在 Svelte 商店中维护实时股票报价,以便屏幕上的出价和要价实时更新。我不确定商店的结构如何来保持数据的 react 性和效率。数据来自 websocket,如下所示: {'symbol'
将 Magento 商店从企业版 1.10.1.1 降级到社区版 1.7.0.0 应遵循什么程序? 我做的步骤是: 备份 Magento EE 1.10.1.1 数据库 :) 将此数据库导入到一个名为
我试图在过去 2 天使用内部应用程序共享上传我的应用程序,但无论我做什么,我都无法让它工作。这就是我所做的: 在控制台中,我点击了应用 -> 发布 -> 内部应用共享 我上传了 apk 我将自己添加到
现在的情况: 我有一个实时系统并且运行良好。 我没有测试系统。 我们的实时系统是一个多商店,在一个网站上有多个商店 View 。 问题: 我需要再添加一个 storeview 并在该 livesyst
我正在建立一个拥有零售店和批发商商店的网站。每个产品中的产品都不同,因此不仅仅是针对用户类型调整定价的问题。我需要保护批发部分的密码,以便它只对登录用户可用。我正在使用一个模块来实现这一点,但它只适用
我在应用商店上有几个应用程序,我每天都会检查所有可用的国家/地区,看看是否有人对我的应用程序留下了评论以及它在付费评级最高的位置中处于什么位置。 花时间看 iTunes 变得非常无聊。但我得到的信息非
我正在从 appsettings.json 加载配置文件,其中保存了 api url。 我已经建立了带有效果的ngrx 7商店。我在 app.component.ts onInit 中调度 loadc
我正在尝试为 Angular ngrx 存储架构中的操作编写 reducer : 这是我的 reducer : export const registration = (state: any, {ty
我创建了一个 Windows 商店应用程序,并使用 Visual Studio IDE 将其与商店相关联。在 Visual Studio IDE 中有用于创建应用程序包和上传应用程序包的菜单选项。 我
我有这个代码可以过滤我的商店 onLicenseGridSelect: function(rowmodel, record, index, eOpts) { Ext.getStore('Lic
我已将应用程序发布到 Play 商店。问题是我的应用程序的标题是 XXX YYY,但是当我输入 XXX YYY 时,搜索列表/索引中没有应用程序,但是如果我输入 XXXYYY,我可以找到我的应用程序。
我需要将所有翻译从主存储导出到另一个。 最佳答案 导出数据库中core_translate 表的内容。您可以为此使用 phpmyadmin。 关于php - 如何将内联翻译导出到另一个 Magento
我正在尝试将某些组件 (USERS) 连接到我的商店。我将向您展示每个步骤。 首先我在 index.js 中创建我的商店: // composeWithDevTools helps to follow
我不久前问过这个问题,并大致了解了商店的用途以及为什么使用它的基本解释。 但是,我目前正在为我的公司开发一个网络应用程序,并且遇到了一些计算问题。 首先,我有大约 35 个数据变量。一次只使用其中的几
我是 ngrx 的新手,我只是想了解它,让它工作起来。 我已将 ngrx(8.3 版)添加到我的应用程序中。 我希望有一些东西处于根状态(如果可能的话),然后我的每个功能都有单独的状态。我从根状态开始
我是一名优秀的程序员,十分优秀!