Skip to content
Snippets Groups Projects
Commit ec86aadf authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Add the context menu to export the grid content to CSV / LaTeX / PDF files

parent 3373e244
No related branches found
No related tags found
No related merge requests found
Showing
with 34 additions and 12 deletions
......@@ -63,6 +63,13 @@ Ext.define('App.local.fr.grid.button.ExpertMenu', {
textReset : 'Reset'
});
Ext.define('App.local.fr.grid.plugin.Export', {
override: 'App.grid.plugin.Export',
textToCSV : 'Exporter en CSV...',
textToLaTeX : 'Exporter en LaTeX...',
textToPDF : 'Exporter en PDF...'
});
Ext.define('App.local.fr.grid.plugin.Paging', {
override: 'App.grid.plugin.Paging',
textPlus : 'Plus',
......
......@@ -5,61 +5,76 @@
*/
.xaction-create {
background-image: url(../icons/oxygen/document-new.png);
background-image: url(../icons/oxygen/16x16/document-new.png);
background-repeat: no-repeat;
}
.xaction-duplicate {
background-image: url(../icons/oxygen/edit-copy.png);
background-image: url(../icons/oxygen/16x16/edit-copy.png);
background-repeat: no-repeat;
}
.xaction-destroy {
background-image: url(../icons/oxygen/edit-delete.png);
background-image: url(../icons/oxygen/16x16/edit-delete.png);
background-repeat: no-repeat;
}
.xaction-download {
background-image: url(../icons/oxygen/go-down.png);
background-image: url(../icons/oxygen/16x16/go-down.png);
background-repeat: no-repeat;
}
.xaction-export {
background-image: url(../icons/oxygen/document-export.png);
background-image: url(../icons/oxygen/16x16/document-export.png);
background-repeat: no-repeat;
}
.xaction-go-down {
background-image: url(../icons/oxygen/go-down.png);
background-image: url(../icons/oxygen/16x16/go-down.png);
background-repeat: no-repeat;
}
.xaction-go-up {
background-image: url(../icons/oxygen/go-up.png);
background-image: url(../icons/oxygen/16x16/go-up.png);
background-repeat: no-repeat;
}
.xaction-import {
background-image: url(../icons/oxygen/document-import.png);
background-image: url(../icons/oxygen/16x16/document-import.png);
background-repeat: no-repeat;
}
.xaction-update {
background-image: url(../icons/oxygen/edit-text-frame-update.png);
background-image: url(../icons/oxygen/16x16/edit-text-frame-update.png);
background-repeat: no-repeat;
}
.xaction-view {
background-image: url(../icons/oxygen/view-form.png);
background-image: url(../icons/oxygen/16x16/view-form.png);
background-repeat: no-repeat;
}
.xapplication-exit {
background-image: url(../icons/oxygen/application-exit.png);
background-image: url(../icons/oxygen/16x16/application-exit.png);
background-repeat: no-repeat;
}
.xminetype-csv {
background-image: url(../icons/oxygen/16x16/text-csv.png);
background-repeat: no-repeat;
}
.xminetype-tex {
background-image: url(../icons/oxygen/16x16/text-x-tex.png);
background-repeat: no-repeat;
}
.xminetype-pdf {
background-image: url(../icons/oxygen/16x16/application-pdf.png);
background-repeat: no-repeat;
}
.xuser-identity {
background-image: url(../icons/oxygen/user-identity.png);
background-image: url(../icons/oxygen/16x16/user-identity.png);
background-repeat: no-repeat;
}
static/plugin_dbui/resources/icons/oxygen/16x16/application-pdf.png

685 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment