Kenneth Sese
Kenneth Sese
FFilament
Created by shabxs on 6/5/2024 in #❓┊help
Testing Filter Tabs
@shabxs @sfrigzs you can pass in the name of the tab you want to test:
livewire(ListOrders::class, [
'activeTab' => 'pending',
])
->assertSuccessful()
->assertCanSeeTableRecords($pendingOrders)
livewire(ListOrders::class, [
'activeTab' => 'pending',
])
->assertSuccessful()
->assertCanSeeTableRecords($pendingOrders)
8 replies
FFilament
Created by toeknee on 2/29/2024 in #❓┊help
Table view to PDF?
Hi @nowak not quite, but almost. Sorry for the delay
11 replies
FFilament
Created by sven on 4/11/2024 in #❓┊help
How are Plugin Activations counted?
Hi @sven Thanks for your interest. The amount of developers working on your project doesn’t count against your activations. So as long as you are using the plugin for just one (non-SaSS) project, a single license will work for you, no matter the number of developers that are working on that project. When you want to use the plugin across multiple projects or a SaSS type application is when you would need an unlimited or lifetime license. Hope that helps and as @Vp pointed out please feel free to ask more questions in the #kenneth-sese-advanced-tables channel and tag me so I get notified. Thanks!
5 replies
FFilament
Created by toeknee on 2/29/2024 in #❓┊help
Table view to PDF?
Yup still WIP...fully working but needs the configurability to make it a good plugin...got busy with work that I haven't been able to finish it and release unfortunately. soon hopefully
11 replies
FFilament
Created by JJSanders on 2/7/2024 in #❓┊help
Redis seems to not pickup imports
@JJSanders Probably related to the update to league CSV, but Dan just pushed a patch. Update to 3.2.26 to see if it fixes it.
7 replies
FFilament
Created by dyo on 12/26/2023 in #❓┊help
Is it possible to have a button for submit filter table
5 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
POC:
Forms\Components\DatePicker::make('poc_date')
->minDate(now()->startOfMonth()->addDay())
->maxDate(now()->endOfMonth()->subDay())
->disabledDates(['2023-12-9', '2023-12-10'])
->native(false),
Forms\Components\DatePicker::make('poc_date')
->minDate(now()->startOfMonth()->addDay())
->maxDate(now()->endOfMonth()->subDay())
->disabledDates(['2023-12-9', '2023-12-10'])
->native(false),
will get you this:
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
(Also, in your original code you are setting minDate twice)
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
You can then use ->disabledDates() along with that if you want to disable weekends, or holidays or something like that
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
Yes, so use your original code but add ->native(false). That’ll disable everything before/after those dates
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
That only does a few dates, ->native(false) should do what he wants
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
Actually, try using minDate and maxDate but with ->native(false)
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
It accepts an array of dates or a closure
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
17 replies
FFilament
Created by Abi on 12/27/2023 in #❓┊help
DatePicker not disabling dates outside of min and max dates
I believe min and max are just for validation. Try ->disabledDates()
17 replies
FFilament
Created by darwin on 12/22/2023 in #❓┊help
Table tabs in filament 2
My plugin #kenneth-sese-advanced-tables does this. You can check out the docs here for the version compatible with Filament v2: https://filamentphp.com/plugins/kenneth-sese-advanced-tables?v=v1#documentation
8 replies
FFilament
Created by Igor on 12/17/2023 in #❓┊help
Conditional Select options don`t work if disabled field
This is an issue with Choices.js unfortunately. After it's been disabled, it can't initialize again. https://github.com/filamentphp/filament/issues/3068
2 replies
FFilament
Created by AliBabba420 on 12/13/2023 in #❓┊help
How to remove applied filters from url
Since you are using Table Builder then remove the #[Url] from above the $tableFilters property
10 replies
FFilament
Created by AliBabba420 on 12/13/2023 in #❓┊help
How to remove applied filters from url
If that’s still what you want to do then you should be able to override the default behavior: https://filamentphp.com/docs/3.x/tables/advanced#query-string
10 replies