-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include summaries in export #146
Comments
There is just no support for it currently. |
Any suggestions or ideas on how i can archieve it as i wait for future updates |
Not really, sorry. It's probably easiest to create a custom export via the underlying |
ok thanks lemi hope in future you add that. thaks fir the support though |
Would this be added in any time soon? seems important |
@zindazed I am not using Summaries anywhere in my projects, so I haven't implemented this yet. I am open for a clean PR though. |
i have a table with summaries at the bottom but i acnt bulk export the table with those summaries
Inthat when i click bulk select the row for summaries isnt among the selectable ones
Below are some of the columns ive defined with summaries
TextColumn::make('sku')
->summarize(Range::make()->limit(5))
TextColumn::make('group_total')
->label('Total # of Group Members')
->sortable()
->numeric(
decimalPlaces: 0,
decimalSeparator: '.',
thousandsSeparator: ',',
)
->searchable()->toggleable(isToggledHiddenByDefault: false)
->summarize(Sum::make()->numeric()->label("")),
TextColumn::make('female_total')
->label('# of Female members')
->numeric(
decimalPlaces: 0,
decimalSeparator: '.',
thousandsSeparator: ',',
)
->sortable()->searchable()->toggleable(isToggledHiddenByDefault: false)
->summarize(Sum::make()->numeric()->label("")),
TextColumn::make('below_35_total')
->label('Total # of members below 35 years')
->numeric(
decimalPlaces: 0,
decimalSeparator: '.',
thousandsSeparator: ',',
)
->sortable()->searchable()->toggleable(isToggledHiddenByDefault: false)
->summarize(Sum::make()->numeric()->label("")),
TextColumn::make('surplus_total')
->label('Surplus/Deficit')
->numeric(
decimalPlaces: 0,
decimalSeparator: '.',
thousandsSeparator: ',',
)
->sortable()->searchable()->toggleable(isToggledHiddenByDefault: false)
->summarize(Sum::make()->numeric()->label("")),
am using fillament v3
Any one to help
The text was updated successfully, but these errors were encountered: