diff --git a/static/plugin_dbui/CHANGELOG b/static/plugin_dbui/CHANGELOG index 61815a4e484729965448d417e8873a9660cf000d..1d12c079384707509dc1fc59eb0c241687ccbe93 100644 --- a/static/plugin_dbui/CHANGELOG +++ b/static/plugin_dbui/CHANGELOG @@ -1,6 +1,7 @@ --------------------------------- CHANGE LOG ---------------------------------- HEAD + - Add the plugin App.grid.plugin.Export 0.6.1.7 (Sep 2014) - Use inline script and Ext.grid.Panel to display software versions diff --git a/static/plugin_dbui/src/grid/plugin/Export.js b/static/plugin_dbui/src/grid/plugin/Export.js index fda92cc463141f06e481952ab88b318f841d07e8..5c884b798ac420a1e4f451f8eab7e9af82df3b89 100644 --- a/static/plugin_dbui/src/grid/plugin/Export.js +++ b/static/plugin_dbui/src/grid/plugin/Export.js @@ -4,7 +4,7 @@ * * A context menu gives access to the different possibilities. * - * @since 0.6.1.7 + * @since 0.6.1.8 * */ Ext.define('App.grid.plugin.Export', { @@ -316,6 +316,7 @@ Ext.define('App.grid.plugin.Export', { // table header if (! header.hidden) { lines.push(header.labels.join(' & ') + ' \\\\'); + lines.push('\\hline\\hline'); } // table content @@ -332,6 +333,7 @@ Ext.define('App.grid.plugin.Export', { if (div) { cmd = '\\multicolumn{' + nColumns + '}{l}{' + div.dom.textContent + '} \\\\'; lines.push(cmd); + lines.push('\\hline'); } } else if (trEl.hasCls("x-grid-data-row") || trEl.hasCls("x-grid-row-summary")) { @@ -356,6 +358,7 @@ Ext.define('App.grid.plugin.Export', { // push the grand total at the end if (total) { + lines.push('\\hline\\hline'); lines.push(total); }