话说刚从ligerui转过来的时候 发现eazyui的treegrid好恶心的说,在ligerui中市容treegrid只需要设置id-pid-treefIle三个字段就会自动帮你出现树表格的,而在eazyui中 id-pid中只能设置fileID 不能设置Pid 只能用默认的_parentid 最恶心的地方是只支持int类型的的id-pid模式,而我这边的id-pid是guid的字符串类型,...
分类:
其他好文 时间:
2015-07-01 12:19:09
阅读次数:
197
父子维度的特点是存在自引用,数据存在层次结构,table的schema的特点是存在一个字段和本身存在外键关系,例如员工表 emph(ID,ParentID,。。。。)。下图是AdventureWorksDW2012中的DimEmployee,语义是一个员工的Leader,也是Employee。1,创...
分类:
其他好文 时间:
2015-06-29 21:57:44
阅读次数:
549
一、View:1、定义输入控件2、绑定combotree$('#ParentId').combotree({ url: "/Action/GetMenuTreeData/", method: "post", lines: true, required: true, onClick: function...
分类:
其他好文 时间:
2015-06-23 17:40:03
阅读次数:
519
1,传统的分层结构是父子结构,表结构中有一个ParentID字段自引用表的主键,表示“归属”关系,例如create table dbo.emph(ID int not null primary key,ParentID int foreign key references dbo.emph(id),...
分类:
其他好文 时间:
2015-06-18 16:55:28
阅读次数:
132
1,在现实世界中,有很多现象存在层次结构,公司的人事职称是典型的层次结果,如下图Sql Server是关系型DB,适合存储二维关系的数据,如何存储具有层次结构的数据了?需要使用一个字段ParentID表示上级ID,示例表结构如下create table dbo.emph(ID int not nul...
分类:
其他好文 时间:
2015-06-17 14:56:09
阅读次数:
111
--cteChildren子孙信息--cteParents父亲信息withcteChildren(EmpID,ParentID)AS(selectEmpID,ParentIDfromPersonswhereparentid=10171unionallselectt.EmpID,t.parentidf...
分类:
数据库 时间:
2015-06-15 10:57:03
阅读次数:
189
4、地区数据下载地址http://download.csdn.net/detail/u011064186/76900893、ajax 部分public function actionAjax()
{
$id = $_GET['pid'];
$sql = "select code,name from area where parentId = $id...
分类:
其他好文 时间:
2015-06-11 17:10:12
阅读次数:
236
clsname是要获取元素的类名,parentId是要获取父元素id
function getElementsByClassName(clsname,parentId){
var p = parentId?document.getElementById(parentId):document,
elements = [],
sonEle = document.getE...
分类:
其他好文 时间:
2015-06-04 17:13:08
阅读次数:
110
C# sql省市联动USE [Book]GOINSERT INTO Area(city, parentid) VALUES ('北京市',0);INSERT INTO Area(city, parentid) VALUES ('天津市',0);INSERT INTO Area(city, paren...
分类:
数据库 时间:
2015-05-31 10:50:49
阅读次数:
216
向下查第几层 select max(LEVEL) as maxLevel from T_lab a start with a.lab_id ='2015050510303643710' connect by prior a.lab_parentid =...
分类:
其他好文 时间:
2015-05-30 12:04:15
阅读次数:
547