Skip to content
Snippets Groups Projects
Commit e0b36cdb authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Adapt grid.mixin.ExportLatex.

parent c091879c
No related branches found
No related tags found
2 merge requests!27Release 0.9.1,!268 extjs 6
......@@ -96,7 +96,7 @@ Ext.define('Dbui.grid.mixin.ExportLatex', {
var cells, cmd, div, nColumns, tdEls, row;
// grouping row. It is represent as a latex multicolumn
if (trEl.hasCls("x-grid-wrap-row")) {
if (trEl.dom.className.length === 0) {
div = trEl.down(".x-grid-group-title");
if (div) {
......@@ -107,7 +107,7 @@ Ext.define('Dbui.grid.mixin.ExportLatex', {
}
// row with standard data cells. It includes summary row.
} else if (trEl.hasCls("x-grid-data-row") || trEl.hasCls("x-grid-row-summary")) {
} else if (trEl.hasCls("x-grid-row") || trEl.hasCls("x-grid-row-summary")) {
cells = [];
tdEls = trEl.select("td");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment