十二、 html页面的CSS、DIV命名规则 名称 命名 名称 命名 名称 命名 名称 命名 页头 header 广告条 banner 登录条 loginbar 标志 logo 侧栏 sidebar 菜单 menu 子菜单 subMenu 下拉菜单 dropMenu 导航 nav 工具条 toolb ...
分类:
Web程序 时间:
2017-09-02 01:07:36
阅读次数:
282
官网:http://docs.sencha.com/extjs/6.5.1/classic/Ext.html示例demo:https://fiddle.sencha.com/#view/editor&fiddle/255l 密码:k2ExtJS1、主要控件:Application、View,View ...
分类:
Web程序 时间:
2017-09-01 21:27:27
阅读次数:
214
Ext.create("Ext.window.Window", { id: "AuthorizationWin", title: "正在编辑……", autoShow: true, modal: true,//设置是否添加遮罩 layout: "anchor", width:600, height: ...
分类:
编程语言 时间:
2017-09-01 21:22:31
阅读次数:
167
问题: 1、根据条件检索后绘制折线图,之前的坐标没有清除如图 解决方案: 在绘制之前,清空坐票: leftLine.surface.removeAll(); leftLine.redraw(false); 完整代码如下 2、坐标数量很大时,横坐标数据覆盖 解决方法: 数据实体添加一个专门用来显示的列 ...
分类:
Web程序 时间:
2017-08-31 16:17:37
阅读次数:
305
本篇文章是为了帮助你更加高效的使用IDEA,提供给你一些最重要的特性的概要,以及一些小提示和技巧,还有最热门的快捷键。 工具窗口调用 <!--more-->当你想要聚焦于代码时,试试Distraction Free Mode。它去掉了所有的工具条、工具窗口和编辑器选项。在主菜单打开View | En ...
分类:
其他好文 时间:
2017-08-28 20:00:38
阅读次数:
210
选中对象后保存对象到新的图层方法。ctrl+c,ctrl+v即可 1 使用魔术棒 适用范围:图像和背景色色差明显,背景色单一,图像边界清晰。 方法意图:通过删除背景色来获取图像。 方法缺陷:对散乱的毛发没有用。 使用方法: 1、点击”魔术棒”工具; 2、在”魔术棒”工具条中,在”连续”项前打勾; 3 ...
分类:
其他好文 时间:
2017-08-25 12:19:10
阅读次数:
119
/** * Created by jiawenjun on 2016/8/5. */Ext.define('Ux.picker.DateTime', { extend: 'Ext.Component', requires: [ 'Ext.XTemplate', 'Ext.button.Button' ...
分类:
Web程序 时间:
2017-08-23 13:51:03
阅读次数:
332
Ext.define('MyPanel',{ extend:'Ext.panel.Panel', xtype:'mypanel', title:'title', height:200, initComponent:function(){ var me=this; me.okBtn = new Ext ...
分类:
Web程序 时间:
2017-08-22 16:49:50
阅读次数:
197
Listeners and Event Domains In Ext JS 4.2, the MVC event dispatcher was generalized with the introduction of event domains. These event domains interc ...
分类:
Web程序 时间:
2017-08-19 23:46:42
阅读次数:
330