Skip to content

Helpers to convert extjs grid panels to something else like an html table or ods file

License

Notifications You must be signed in to change notification settings

jonathanmv/extjs-grid-converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

extjs-grid-converter

Helpers to convert extjs grid panels to something else like an html table or ods file

GridToHtmlTable

Use this converter when you need to print or somehow export the grid data shown in your exjs app. This converter transforms also the nested columns so the hierarchy won't be lost in the headers.

Usage

  1. Make sure you have set the path for the user extensions in your app.js file
Ext.Loader.setPath({ 'Ext.ux': 'path/to/ux' });
  1. Make sure to add the converter into the requires list on the class where you're going to use it
Ext.define('SomeClass', {
  requires: [
    'Ext.ux.converter.GridToHtmlTable'
  ]
});
  1. Create an instance of the converter and call the convert method giving the grid you want to convert as the only parameter
var converter = Ext.create('Ext.ux.converter.GridToHtmlTable'),
    htmlTableString = converter.convert(myGrid);
  1. Use the htmlTableString as you want. You can create a component and set the html property with the htmlTableString value or write it in some other html element like a div.

GridToOds

Use this converter when you need to export the grid data in a format that excel can open. This converter transforms also the nested columns so the hierarchy won't be lost in the headers.

Usage

  1. Make sure you have set the path for the user extensions in your app.js file
Ext.Loader.setPath({ 'Ext.ux': 'path/to/ux' });
  1. Make sure to add the converter into the requires list on the class where you're going to use it
Ext.define('SomeClass', {
  requires: [
    'Ext.ux.converter.ods.GridToOds'
  ]
});
  1. Create an instance of the converter and call the convert method giving the grid you want to convert as the only parameter
var converter = Ext.create('Ext.ux.converter.ods.GridToOds'),
    odsDocuments = converter.convert(myGrid);      

It will create an object with several properties, one per ods document as decribed below

Property Name Ods file
contentDocument content.xml
metaDocument meta.xml
stylesDocument styles.xml
manifestDocument manifest.xml
mymetype mymetype
  1. In order to be able to open an ods document, you need to zip all those files and download them as a .ods file. Use jszip and FileSaver to do so as shown below
    var zipper = new JSZip();
    zipper.file('content.xml', odsDocuments.contentDocument);
    zipper.file('meta.xml', odsDocuments.metaDocument);
    zipper.file('styles.xml', odsDocuments.stylesDocument);
    zipper.file('mimetype', odsDocuments.mimetype);
    zipper.file('META-INF/manifest.xml', odsDocuments.manifestDocument);
    var file = zipper.generate({ type: 'blob' });
    saveAs(file, 'myGrid.ods');

About

Helpers to convert extjs grid panels to something else like an html table or ods file

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published