Alaksandar Jesus Gene
Alaksandar Jesus Gene

Reputation: 6887

ui-grid hide grid menu item (not all only export button)

I am using angular ui-grid and using external button to export as a csv file.

The final grid menu is similar to as attached.

From this, i need to remove the export as buttons. But the columns should be there in the grid menu.

How can i achieve this?enter image description here

Upvotes: 0

Views: 1395

Answers (2)

SanDar
SanDar

Reputation: 1

Remove all references to the 'ui-grid-exporter' directive on your grid. That would remove all export options you see under the Grid Menu for all file formats.

Upvotes: 0

CMR
CMR

Reputation: 933

There are gridOptions to hide the exportbuttons.

exporterMenuCsv: false,
exporterMenuPdf: false,

I created a Plunkr.

Upvotes: 0

Related Questions