Skip to content

Commit

Permalink
Allow group rows to have custom colspan for #132
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgueni Naverniouk committed Sep 10, 2014
1 parent b46914b commit da7f420
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/doby-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -5980,6 +5980,10 @@
if (this.predef.rowSpacing !== undefined && this.predef.rowSpacing !== null) {
this.rowSpacing = this.predef.rowSpacing;
}

if (this.predef.colspan !== undefined) {
this.columns[0].colspan = this.predef.colspan;
}
}
};

Expand Down

0 comments on commit da7f420

Please sign in to comment.