Home > Web Front-end > JS Tutorial > body text

jquery miniui 教程 表格控件 合并单元格应用_jquery

WBOY
Release: 2016-05-16 17:47:56
Original
1396 people have browsed it

表格:合并单元格
jquery miniui 教程 表格控件 合并单元格应用_jquery
参考示例:合并单元格

调用方法:margeCells。如下代码:

复制代码 代码如下:

grid.on("load", onLoad);
function onLoad(e) {
var grid = e.sender;

var marges = [
{ rowIndex: 1, columnIndex: 0, rowSpan: 1, colSpan: 2 },
{ rowIndex: 3, columnIndex: 0, rowSpan: 4, colSpan: 3 }
];

grid.margeCells(marges);
}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!