Home  >  Article  >  Web Front-end  >  jquery miniui tutorial table control merged cells application_jquery

jquery miniui tutorial table control merged cells application_jquery

WBOY
WBOYOriginal
2016-05-16 17:47:561465browse

Table: Merge Cells
jquery miniui tutorial table control merged cells application_jquery
Reference Example: Merge Cells

Calling method: margeCells. The following code:

Copy code The code is as follows:

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);
}
Statement:
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