|
Project Information
Links
|
MOVED TO GITHUBhttps://github.com/VinylFox/ExtJS.ux.DataDrop This code repository will no longer receive updates, please visit Github for most recent version. Ext.ux.grid.DataDropThis plugin is to be used on an ExtJS 3.x grid, giving that grid the ability to accept data dragged from spreadsheet programs such as Excel and OpenOffice Calc right into the grid to create rows of data. See my blog post about it, and the event forwarding post for more details. Example Usage (Current Version r5 and up - Singleton){
xtype: 'grid',
...,
plugins: [Ext.ux.grid.DataDrop],
...
}Example Usage (Previous Version r4 - Extends Component){
xtype: 'grid',
...,
plugins: [new Ext.ux.grid.DataDrop()],
...
}
|