环境:RHEL6.4 + Oracle 11.2.0.3问题:需求是文件系统迁移到ASM,在安装GI后,运行roothas.pl脚本报错1.运行root.sh后,按提示运行roothas.pl报错:[root@JY-DB mnt]# /u01/app/11.2.0/grid/crs/install/...
分类:
数据库 时间:
2014-07-22 22:50:57
阅读次数:
380
跟我一起学extjs5(21--模块Grid的多列表方案)
对于有很多字段的模块在一个grid中显示所有的字段,会显得很臃肿,对于不同的用户其侧重的字段类型也不尽相同,因此就有必要为Grid的列表设计多个方案。在这个自定义系统进行设计的时候,我已经将这部分内容设计了进去,在ModuleModel.js中,在data下面有个属性tf_gridSchemes为数组型,你有多少...
分类:
Web程序 时间:
2014-07-21 11:33:55
阅读次数:
311
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:
其他好文 时间:
2014-07-21 08:16:25
阅读次数:
229
Grid是ExtJS中最常用的组件之一,今天在此稍作整理,主要针对一些常用的功能知识点。一、基础的Grid表格Ext.create(‘Ext.data.Store‘,{
storeId:‘simpsonsStore‘,
fields:[‘name‘,‘email‘,‘phone‘],
data:{‘items‘:[
{‘name‘:‘Lisa‘,"email":"lisa@simpsons.com","phone":"555-..
分类:
Web程序 时间:
2014-07-19 02:42:05
阅读次数:
293
在ext grid 中如何确定选中行?如何获取选中行数据?其实很简单,用到了Ext.getCmp('id'),他可以获取到指定id的对象。grid 获取行对象:var row = Ext.getCmp("Grid_ID").getSelectionModel().getSelections();ro...
分类:
其他好文 时间:
2014-07-18 20:30:01
阅读次数:
150
做了一个编辑extjs grid记录的窗体,但更改数据后,怎么重新刷新grid让数据显示呢?做了半天的尝试,其实到最后只需一句话,faint:-)this.store.reload();不用加任何参加都可以了:-)
分类:
Web程序 时间:
2014-07-18 19:09:09
阅读次数:
259
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:
其他好文 时间:
2014-07-18 17:21:54
阅读次数:
293
var gridColumnModel = new Ext.grid.ColumnModel([ new Ext.grid.RowNumberer(), new Ext.grid.CheckboxSelectionModel...
分类:
Web程序 时间:
2014-07-18 15:27:41
阅读次数:
336
1. grid数据闪的问题。在部分浏览器存在这个问题,就是点“查询”后,先显示数据,然后再调整column的宽度,就产生了闪的效果。原来我是这样写的:$('#grid1').datagrid({ queryParams: { id:5 }}); ...
分类:
其他好文 时间:
2014-07-18 14:33:24
阅读次数:
379
RuntimeNameProperty特性:为什么等价于,是因为Grid类使用RuntimeNameProperty特性进行了修饰, RuntimeNameProperty特性指示哪个属性的值将被做为该类型的实例的名称。WPF的类型转换器:XAML解析器通过以下的两个方法查找类型转换器,如果找不到,...
分类:
其他好文 时间:
2014-07-18 10:02:22
阅读次数:
229