Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

More often than not the export actions are added to a menu that is itself included in the grid panel, rather than the button being directly embedded.

The HTML export supports an external .css file allowing for the HTML output to be prettied up a little.
This is accomplished by creating a file named 'export_html.css' saving it in the workspace directory, the content of this file will be embedded directly in the generated HTML document as a stylesheet.

The following is an example of a basic .css file that will change the background colours for the table.

Code Block

table { background-color: #beccdd; }
tr.even { background-color: #ffffff; }
tr.odd { background-color: #deecfd; }

ID

com.cohga.html.client.grid.exportAction

...