首页 > 代码库 > DHTMLX 前端框架 建立你的一个应用程序 教程(五)--添加一个表格Grid
DHTMLX 前端框架 建立你的一个应用程序 教程(五)--添加一个表格Grid
表格例子
样本如下:
我们这篇介绍的是dhtmlxGrid 组件。 它支持4种数据格式:XML, JSON, CSV, JSArray.
添加表格到布局的单元格中去:
1.使用attachGrid() 方法将表格添加到布局的单元格中去。
var layout = new dhtmlXLayoutObject(document.body,"2U"); var contactsGrid = layout.cells("a").attachGrid();
2.继续添加代码 进行gird的初始化设置:
contactsGrid.setHeader("Name,Last Name,Email"); //sets the headers of columnscontactsGrid.setColumnIds("fname,lname,email"); //sets the columns‘ idscontactsGrid.setInitWidths("250,250,*"); //sets the initial widths of columnscontactsGrid.setColAlign("left,left,left"); //sets the alignment of columnscontactsGrid.setColTypes("ro,ro,ro"); //sets the types of columnscontactsGrid.setColSorting("str,str,str"); //sets the sorting types of columns
3.用init() 方法进行表格的初始化
contactsGrid.init();
DHTMLX 前端框架 建立你的一个应用程序 教程(五)--添加一个表格Grid
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。