Jsgrid Javascript Grid Framework

removegrids method

The method removegrids removes the cells between 2 cells in the same column. It is similar to rowspan method.

Syntax

objgrid.removegrids(element1,element2)

Parameters

element - A two element array [colno,rowno], in which colno means column number and rowno means row number.

var pggrid = new jsgrid(); 
        pggrid.init({ 
        id:"wrp", 
        rows:5, 
        columns:12, 
        width:25, 
        height:20, 
        gutter:1,
        backgroundColor: "#7fffd4" 
        }); 
var grp = pggrid.removegrids([3,1],[3,3]);

Grid View