文章列表
Ext.define('MyApp.views.Viewport', {
extend: 'Ext.container.Viewport', //extend
requires:['MyApp.stores.TreeStore'], //important
layout: {
type: 'border'
},
initComponent: function() {
var me = this;
var treeStore = MyApp.stores.TreeStore;
...
1、解决myeclipse中alt+/无代码提示问题
进入windows->preferences->keys目录中将content assist 的 binding 设为alt+/ ,when设为editing然后将Word Completion 设为其他的任意快捷键,保存退出即可。
2、解决ctrl+代码无法察看java原文件问题
有时我们想察看j2se的原文件比如我想看String类的源代码但按住ctrl+String没有显示。解决这一问题首先要有jdk或j2se的源代码(.java文件)才行。
位置:在jdk的目录下有一个src.zip文件顾名思义这就是源文件了(若没安装j ...