activeadmin-axlsx icon indicating copy to clipboard operation
activeadmin-axlsx copied to clipboard

ActiveAdmin plugin using Axlsx for adding Excel (xlsx) download links for your resources

Results 25 activeadmin-axlsx issues
Sort by recently updated
recently updated
newest added

first download it from github to change something. git clone https://github.com/randym/activeadmin-axlsx git clone https://github.com/ywencn/active_admin make path correct. gem 'activeadmin-axlsx', path: '../activeadmin-axlsx' gem 'activeadmin', path: '../activeadmin' change all below: for undefined...

I have axlsx-3.0.0.pre.gem installed yet I continue to receive missing dependency error while attempting to install activeadmin-axlsx-2.1.2.gem ERROR: Could not find a valid gem 'axlsx' (

https://github.com/randym/activeadmin-axlsx/blob/4c2ae1f68a0853393f3fbe2baae594d9cb22d488/activeadmin-axlsx.gemspec#L20 to ```s.add_runtime_dependency 'activeadmin', ">= 0.6.0"```

my code: ``` ruby after_filter { |sheet| new_sheet = sheet.workbook.add_worksheet(:name => 'Pivot Table') new_sheet.add_pivot_table "A1:B2", "'Sheet1'!A1:M15" do |pivot_table| pivot_table.rows = ['Month', 'Year'] pivot_table.columns = ['Type'] pivot_table.data = ['Sales'] end }...

i like to download for each index or show page here in my code look like collection_action :download_xlsx, method: :get do project = Project.find(params[:id]) send_data(filename: "#{project.project_name}.xlsx", type: "application/xlsx") end index...

**lib/active_admin/axlsx/resource_controller_extension.rb** index_without_xlsx(options) fails with: `wrong number of arguments (1 for 0)` ``` def index_with_xlsx(options={}, &block) index_without_xlsx(options) do |format| format.xlsx do xlsx = active_admin_config.xlsx_builder.serialize(collection) send_data xlsx.to_stream.read, :filename => "#{xlsx_filename}", :type =>...

When I add `gem 'activeadmin-axlsx’` and run `bundle`, my ActiveAdmin app fails with this message: ![pastedgraphic-1](https://cloud.githubusercontent.com/assets/354313/8674694/9157dc8a-2a0d-11e5-9f9f-4bc512faef8b.png)