Jsgrid Javascript Grid Framework

removeall method

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

Syntax

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

Grid View