Alexandr Chernyaev

Results 168 comments of Alexandr Chernyaev

From my experience, I’ve only seen three-click sorting in very basic implementations that didn’t really consider having a proper “reset” option. I also checked a few popular sites with sortable...

Could you please explain why `options` is used here when the value isn’t an array? It seems more logical to use `options()` for arrays and `fromEnum()` for enum values. [https://github.com/orchidsoftware/platform/blob/2c3cc1be7fb9b1c773187479935dbea945dd3e6b/tests/Unit/Screen/Fields/SelectTest.php#L271-L302](https://github.com/orchidsoftware/platform/blob/2c3cc1be7fb9b1c773187479935dbea945dd3e6b/tests/Unit/Screen/Fields/SelectTest.php#L271-L302)

When working with large datasets, you’ll most likely never want to calculate the total number of pages manually. Instead, it’s better to use cursor pagination, as described here: https://laravel.com/docs/12.x/pagination#cursor-pagination In...

I definitely would like to see support for UUIDs and other identifier generation methods like nanoid. Regarding the `loadRelatedAttachments` method, I see it as a fallback mechanism — something to...

I tried uploading and deleting images in `Attach` both in multiple mode and single mode. I tested it in Firefox 145.0 (aarch64) and I’m not seeing any 404 errors. Could...

I was able to reproduce this both in the latest version and in the `master` branch. It looks like the issue is related to how Firefox handles the `` element,...

close https://github.com/orchidsoftware/platform/pull/3064

Hi! Thanks for pointing that out. To be honest, I'm not sure it's still necessary to manually set the CSRF token this way. Back when Hotwire was still Turbolinks, it...