- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在sencha中的选项卡面板中添加一个加载掩码,我在 Controller 中通过Ajax请求加载了一个商店,但是在商店加载之前我需要放置一个加载掩码,并且在商店加载之后已加载,我需要将其删除。这是我到目前为止的代码
我的 Controller
Ext.define('QvidiApp.controller.MyController', {
extend: 'Ext.app.Controller',
config: {
},
beforeLoad: function() {
Ext.Ajax.on('beforeLoad', function (con, opt) {
Ext.getCmp('mainTabPanel').setMasked({
xtype: 'loadmask',
message: 'Loading...',
indicator:true
});
}, this);
},
getGender: function() {
Ext.Ajax.request({
method: 'POST',
timeout: 25000,
disableCaching : true,
useDefaultHeader : true,
params: {
class: 'Qvidi',
method: 'getDataM'
},
url: 'server/index.php',
success: function( response ){
var r = Ext.decode( response.responseText );
Ext.getStore('GenderStore').setData( r.results );
}
});
Ext.getCmp('mainTabPanel').setMasked(false);
},
afterLoad: function() {
Ext.getCmp('mainTabPanel').setMasked(false);
},
init: function(application) {
QvidiApp.app.getController('MyController').beforeLoad();
QvidiApp.app.getController('MyController').getGender();
QvidiApp.app.getController('MyController').afterLoad();
console.log('loaded');
}
});
这是我的选项卡面板代码
{
xtype: 'tabpanel',
id: 'mainTabPanel',
ui: 'light',
layout: {
type: 'card',
animation: 'scroll'
},
items: [
{
xtype: 'container',
title: 'Welcome',
iconCls: 'home',
id: 'welcomeTab',
items: [
{
xtype: 'image',
centered: true,
height: 85,
width: 318,
src: 'http://104.155.111.158/qvidim/PowerdbyNfinity.png'
}
]
},
{
xtype: 'container',
title: 'Data',
iconCls: 'organize',
items: [
{
xtype: 'dataview',
height: 465,
id: 'dataview',
masked: true,
itemTpl: [
' <tpl>',
' <table style="width: 100%;">',
' <tr>',
' <td><div style="width:5em; text-align: left">{gender}</div></td>',
' <td><div style="width:5em; text-align: left">{glances} </div></td>',
' <td><div style="width:5em; text-overflow: ellipsis; display: block; overflow: hidden; text-align: left">{title}</div></td>',
' </tr> ',
' </table>',
' <hr>',
' </tpl>'
],
store: 'QvidiDataStore'
}
]
},
{
xtype: 'container',
title: 'PieChart',
iconCls: 'info',
layout: 'fit',
scrollable: 'vertical',
items: [
{
xtype: 'polar',
id: 'genderPieChart',
colors: [
'#115fa6',
'#94ae0a',
'#a61120',
'#ff8809',
'#ffd13e',
'#a61187',
'#24ad9a',
'#7c7474',
'#a66111'
],
store: 'GenderStore',
series: [
{
type: 'pie',
labelField: 'types',
xField: 'counter'
}
],
interactions: [
{
type: 'rotate'
}
]
}
]
},
{
xtype: 'container',
title: 'BarChart',
iconCls: 'info',
scrollable: 'vertical',
items: [
{
xtype: 'chart',
centered: true,
height: 374,
colors: [
'#24ad9a',
'#7c7474',
'#a66111'
],
store: 'ClipsViewed',
axes: [
{
type: 'category',
fields: [
'title'
]
},
{
type: 'numeric',
fields: [
'viewed'
],
grid: {
odd: {
fill: '#e8e8e8'
}
},
position: 'left'
}
],
series: [
{
type: 'bar',
style: {
minGapWidth: 1,
minBarWidth: 80,
maxBarWidth: 80
},
xField: 'title',
yField: [
'viewed',
'glances'
]
}
],
interactions: [
{
type: 'panzoom'
}
]
}
]
},
{
xtype: 'container',
title: 'ClipsGenderChart',
iconCls: 'info',
scrollable: 'vertical',
items: [
{
xtype: 'chart',
centered: true,
height: 378,
colors: [
'#ff8809',
'#7c7474'
],
store: 'ClipsGenderStore',
axes: [
{
type: 'category',
fields: [
'title'
]
},
{
type: 'numeric',
fields: [
'male'
],
grid: {
odd: {
fill: '#e8e8e8'
}
},
position: 'left'
}
],
series: [
{
type: 'bar',
style: {
minGapWidth: 1,
minBarWidth: 80,
maxBarWidth: 80
},
xField: 'title',
yField: [
'male',
'female'
]
}
],
interactions: [
{
type: 'panzoom'
}
]
}
]
}
],
tabBar: {
docked: 'bottom',
ui: 'light'
}
}
我不知道为什么这不起作用,我在 Chrome 开发者控制台中测试了它,这是我在控制台上收到的错误
未捕获类型错误:无法读取未定义的属性“setMasked”
最佳答案
您的代码实际上没有意义。这个例子必须有效。如果还有什么不清楚的可以在评论里提问
Controller
Ext.define('QvidiApp.controller.MyController', {
extend: 'Ext.app.Controller',
init: function(application) {
this.control({
"#genderPieChart": {
afterrender: this.loadPieChartStore
}
});
}
loadPieChartStore: function(component) {
var tabPanel = component.up("tabPanel[id=mainTabPanel]");
tabPanel.setMasked({
xtype: 'loadmask',
message: 'Loading...',
indicator:true
});
Ext.Ajax.request({
method: 'POST',
timeout: 25000,
disableCaching : true,
useDefaultHeader : true,
params: {
class: 'Qvidi',
method: 'getDataM'
},
url: 'server/index.php',
success: function( response ){
var r = Ext.decode( response.responseText );
Ext.getStore('GenderStore').setData( r.results );
tabPanel.setMasked(false);
console.log('loaded');
},
failure:function(){
tabPanel.setMasked(false);
}
});
},
});
查看
{
xtype: 'container',
title: 'PieChart',
iconCls: 'info',
layout: 'fit',
scrollable: 'vertical',
items: [
{
xtype: 'polar',
itemId: 'genderPieChart',
colors: [
'#115fa6',
'#94ae0a',
'#a61120',
'#ff8809',
'#ffd13e',
'#a61187',
'#24ad9a',
'#7c7474',
'#a66111'
],
store: 'GenderStore',
series: [
{
type: 'pie',
labelField: 'types',
xField: 'counter'
}
],
interactions: [
{
type: 'rotate'
}
]
}
]
}
关于javascript - 如何在商店加载之前向面板添加 mask 并在商店加载后删除 mask ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35839024/
我对 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 版)添加到我的应用程序中。 我希望有一些东西处于根状态(如果可能的话),然后我的每个功能都有单独的状态。我从根状态开始
我是一名优秀的程序员,十分优秀!