Ext 导出数据,根据官网的代码,报:
this.getView(...).saveDocumentAs is not a function
的问题。
参考:
Ext Export
not
working
官网代码:
二、解决方案
主要的原因还是以为找不到 Grid 的问题。我参考中使用的是
Ext
.
ComponentQuery
.
query
(
'grid'
)[
0
]; 来寻找 Grid ,如果 一个 view 中有两个 grid 我们需要找,看看是那个 grid,不同通用。所以我使用的方式是通过传入的 btn 来找最近的 grid。完美解决还通用
exportTo: function (btn) {
var cfg = Ext.merge({
title: 'Grid export demo',
fileName: 'GridExport' + '.' + (btn.cfg.ext || btn.cfg.type)
}, btn.cfg);
//参考的
var p = Ext.ComponentQuery.query('grid')[0];
p.saveDocumentAs(cfg)//如果一个view中有两个 grid 不适用
//自己推到的
this.getView().query('grid')[0].saveDocumentAs(cfg);//如果一个view中有两个 grid 不适用
//最后使用
btn.up('grid').saveDocumentAs(cfg);//通用
转载于:https://www.cnblogs.com/gzbit-zxx/p/11202730.html
一、前言 Ext 导出数据,根据官网的代码,报:this.getView(...).saveDocumentAs is not a function 的问题。 参考:Ext Exportnotworking 官网代码: 二、解决方案 主要的原因还是以为找不到 Grid 的问题。我参考中使用的是 Ext.ComponentQuery.query('g...
"this.getView()" 是 SAP UI5 库中的一个方法,它返回当前控件的视图。
在 UI5 中,控件是用于构建用户界面的组件。视图是控件的一种,它代表用户界面的一部分。使用 "this.getView()" 方法,您可以访问当前控件的视图,并使用它来访问视图中的其他元素。
例如,假设有一个名为 "myControl" 的控件,它具有一个名为 "myButton" 的按钮。您可以使用以...
在解决了上一边博客的问题之后,在进行后续的操作时竟然在XX-XXViewModel中使用this.GetView()返回的是null????!!!
这篇博客跟上一篇博客可谓是联系紧密。现在做的项目是在之前同事做的项目中分离出来的,当然就少不了Ctrl+C、Ctrl+V的操作。在经历了一番代码搬运和修改之后,发现某个方法使用了this.GetView(),调试的时候该方法返回null。
在this.GetView()处按F12可以找到ViewAware的类。
#region 程序集 Calibur
先上代码我们在View的ViewController文件中进行测试,纯属为了方便。
Ext.define('RUKU.view.main.MainController', {
extend: 'Ext.app.ViewController',
alias: 'controller.main',
onItemSelected: ...
问题描述:在ScrollView中嵌套使用了ListView/GridView,ListView/GridView只显示一行,为了解决这个问题,重写了ListView/GridView的onMeasure()方法。 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
isOnMeasu...
getView是在Adapter中申明
public abstract View getView (int position, View convertView, ViewGroup parent)
Since: API Level 1
Get a View that displays the data at the specified position in the data set. Y