Ext.ux.Printer
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:A generic printing class that assists with the printing of any Ext.Component
Overview
========

Ext.ux.Printer is a small library that provides a generic way of printing Ext Components (Grids, Trees, etc).
It consists of the main Printer class, and a number of Renderers, which each provide support for a given type of component.

Installation
============

Printer.js and renderers/Base.js are required:




The library currently comes with renderers for Ext.grid.GridPanel, and Ext.tree.ColumnTree. These can be included as required:



Usage
=====

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

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

var myTree = new Ext.tree.ColumnTree({
  //your usual tree config here
})

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

Each of the above examines the component you pass to the print function, and if a suitable renderer has been created
for it, the component is printed by opening a new window, writing some print-friendly HTML to it, and calling the 
window's print function.

Currently supported components are:

Ext.grid.GridPanel
Ext.tree.ColumnTreePanel

To add support for another Component type, simply subclass Ext.ux.Printer.BaseRenderer (see the existing renderers for examples),
and register it with Ext.ux.Printer.registerRenderer('somextype', Ext.ux.Printer.SomeComponentRenderer).

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。