onRender: function (grid) { var tip = Ext.create('Ext.tip.ToolTip', { title: 'Detail', minWidth: 800, maxWidth: 800, minHeight: 200, ... ...
分类:
Web程序 时间:
2018-04-08 19:48:21
阅读次数:
234
原文链接 There are many trees forming a m * n grid, the grid starts from (1,1). Farmer Sherlock is standing at (0,0) point. He wonders how many trees he c ...
分类:
其他好文 时间:
2018-04-08 00:16:12
阅读次数:
170
1 import numpy 2 from pylab import * 3 4 # 定义一个含有障碍物的20×20的栅格地图 5 # 10表示可通行点 6 # 0表示障碍物 7 # 7表示起点 8 # 5表示终点 9 map_grid = numpy.full((20, 20), int(10), ...
分类:
编程语言 时间:
2018-04-07 22:53:25
阅读次数:
370
一、滚动条基本样式 本次修改Scrollview及ScrollBar滚动条样式是通过纯样式实现的。修改的内容包含滚动条的颜色,上下按钮的隐藏。另外添加了鼠标经过滚动条动画。 style样式如下: 修改之后的滚动条是影响全局的。 样式应用之后的效果如下: 引用示例: ...
一:Selenium简介 selenium 是一套完整的web应用程序测试系统,包含了测试的录制(selenium IDE),编写及运行(Selenium Remote Control)和测试的并行处理(Selenium Grid)。Selenium的核心Selenium Core基于JsUnit, ...
分类:
其他好文 时间:
2018-04-06 20:19:24
阅读次数:
208
1 import numpy 2 import matplotlib.pyplot as plt 3 from pylab import * 4 5 6 map_grid = numpy.full((20, 20), int(10), dtype=numpy.int8) 7 # print(map_... ...
分类:
编程语言 时间:
2018-04-06 17:33:27
阅读次数:
204
题意: 从左上角跳到右下角最少需要多少步,跳的规则为:可以向四个方向的任意一个方向跳当前格子中的步数,若跳不到右下角输出IMPOSSIBLE。 题解: BFS搜索,注意判断边界,标记。 代码: ...
分类:
其他好文 时间:
2018-04-05 21:03:49
阅读次数:
173
rac12c01:/home/grid&$ORACLE_HOME/OPatch/opatch lsinv?Oracle Interim Patch Installer version 12.2.0.1.12Copyright (c) 2018, Oracle Corporation. ?All rights reserved.Oracle Home ? &nb
分类:
其他好文 时间:
2018-04-05 11:43:42
阅读次数:
501
数据: matlab中双对数函数: 命令: 解释: loglog:用于画双对数坐标,对数坐标可以清楚地看到较小值的变化 blacko-:其中black表示黑色边框,o表示为圆形,-表示点之间需要连线且为直线段 ‘MarkerFaceColor’, [1, 0, 0]表示点颜色为红色 grid on: ...
分类:
其他好文 时间:
2018-04-05 01:26:28
阅读次数:
8192
什么是网格(Grid)? 摘自维基百科: 简单地说,网页设计中的网格用于组织内容,让网站易于浏览,并降低用户端的负载。 什么是 Bootstrap 网格系统(Grid System)? Bootstrap 官方文档中有关网格系统的描述: 让我们来理解一下上面的语句。Bootstrap 3 是移动设备 ...
分类:
Web程序 时间:
2018-04-04 20:46:47
阅读次数:
223