Giter Site home page Giter Site logo

extjs4-ux-gridprinter's Introduction

Added Support for ExtJS 5.0.x.

h1. Ext.ux.grid.Printer 

h2. Overview

p. Ext.ux.grid.Printer is a small library that provides a way of printing Ext Grid Component.

h2. Installation

p. Place the folder ux/grid in your project.

h2. Usage

p. In your application file, please add:

bc.. Ext.Loader.setConfig({enabled: true});

Ext.require([
    'Ext.ux.grid.Printer',
]);


p. Ext.ux.grid.Printer.print just take a single argument - a normal grid instance. Use it like this:

bc.. var myGrid = new Ext.grid.GridPanel({
  //your usual grid config here
});

Ext.ux.grid.Printer.print(myGrid);

h2. Example

p. Open example.html to see how to use it.

h2. Custom Options

p. You can customize some options:

* Ext.ux.grid.Printer.printAutomatically = false; - to disable the automatic printing (the print window will not open, user will only see the print version of the grid).
* Ext.ux.grid.Printer.stylesheetPath = '/some/other/path/gridPrint.css'; - to change the path of the css file.

p. You need to set the custom config before calling Ext.ux.grid.Printer.print function.

h2. Demo

Demo: http://loianegroner.com/extjs/examples/extjs4-ux-gridprinter/

h2. Authors

p. Plugin originally developed by Ed Spencer (Ext JS 3.x)
* http://edspencer.net/2009/07/printing-grids-with-ext-js.html

p. Plugin ported to Ext JS 4 by Loiane Groner
* http://loianegroner.com (English)
* http://loiane.com (Portuguese)

p. he MIT License (MIT)

Copyright (c) 2015 connors and other contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

extjs4-ux-gridprinter's People

Contributors

aksndr avatar betolima avatar bsalesc avatar chamacs avatar dmurat avatar eibborest avatar jcdang avatar jlblcc avatar loiane avatar nielsenteixeira avatar orrence avatar paulodiovani avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

extjs4-ux-gridprinter's Issues

Bad renderer function call context

In Printer.js at line 289 I think that the call to the renderer function should be called with the column binded insted of the grid

value = column.renderer.call(column, value, meta, rcd, -1, col - 1, this.grid.store, this.grid.view);

insted of the current line

value = column.renderer.call(this.grid, value, meta, rcd, -1, col - 1, this.grid.store, this.grid.view);

Fork maintained

Hi and thx to all of the contributors to this useful class.

For anyone interested, I mention that we (@Arhia) actively maintain a fork since 2017 at https://github.com/Arhia/Ext.ux.grid.Printer
It includes all the commits of this current repo, and adds a few more options (see Readme.md)

We are open to PR and suggestions.

Make "unselectableAttr" configurable

Dear Miss Groner,
I would like to make it configurable if the generated HTML for the printed grid contains "unselectable="on" " or not.
How would you go about this?
Thanks,
Daniel.

Grid column formatting not applied when printing dates

When rendering the grid row, format (e.g. date format) is not being taken into account.

{ text: 'Data/Hora Entrada', dataIndex: 'DataHoraEntrada', xtype: 'datecolumn', format: 'd/m/Y H:i:s', flex: 1 },

The printed result shows m/d/Y default date format.

Imprimir cabeçalhos agrupados - Print grouped headers

Olá, Loiane!

Spencer e você fizeram um bom trabalho! Parabéns!
Estou usando o ux-gridprinter e funciona muito bem pra mim. Mas no caso de cabeçalhos agrupados ele imprime apenas uma linha do cabeçalho...

Bom, queria saber se há possibilidade de imprimir cabeçalhos agrupados das grids com o ux-printgrid.

Segue em anexo um exemplo.

Obrigado!!

grid print
.

Extjs 6.2 build failed

Hello,
I have been trying to intergrate the plugin to my project to print one grid. I have added the ux to ext/classic/classic/src/ux/grid . Eachtime I ran the application I get this error: [ERR] C2008: Requirement had no matching files (Ext.grid.feature.RowWrap) and this [ERR] com.sencha.exceptions.ExBuild: Failed to find any files for C:\app\ext\classic\classic\src\ux\RowExpander.js::ClassRequire::Ext.grid.feature.RowWrap is missing.
Is this plugin compatible with Extjs 6.2 and CMD 6.5?

Printing all pages

Thanks for the wonderful plugin. Is there any config to print all pages?

Template Column and grouping summaries stops data output

Change for around line 706 to fix this.

if (column.renderer && column.xtype != 'templatecolumn')
value = column.renderer.call(this.grid, value, meta, rcd, -1, col - 1, this.grid.store, this.grid.view);
else if (column.renderer && column.xtype == 'templatecolumn')
value = column.tpl.apply(rcd.data);

print not working with electron

Hello,
The plugin works fine.
However, once added to an electron app the plugin breaks at line 525 (Printer.js)
win.document.open();

Error thrown is:

Uncaught TypeError: Cannot read property 'open' of undefined

Any suggestions how to overcome this issue?

Grouping feature does not get printed

Grids with grouping do not get printed correctly. No headers and multiple rows for grouped data get printed.
It would be great if you could add support for grouping!
Thanks,
orrence.

Issue using printAutomatically = true

When setting to true, in chrome, the print window will not have any contents. This can be fixed by moving win.document.close inside Printer.js to after
if (this.printAutomatically){
win.print();
}

New window in chrome.

Looks like some sort of weird security "feature" with Chrome, but when you set the name a window it does not open a new window, but uses the current window.

in Printer.js, changing

var win = window.open('', 'printgrid');

to
var win = window.open('', '_blank');

seems to fix it.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.