Aaron Carlino

Results 120 comments of Aaron Carlino

If you submit a PR with the changes, I'll gladly give it a prompt review and merge. :)

Thanks very much for this! I like the idea, and I certainly see the use case, but It feels to me like it's just plugging a hole created by a...

Yeah, I'm still trying to figure this one out. This is the first react/npm module I've released, so I'm a bit new to it.

Could this issue be solved by changing the `package.json` `"main": "src/react-selectable.js"` to point to `"dist/react-selectable.js"` instead?

Can you please replicate the issue on my demo site? http://modules.unclecheeseproductions.com/admin/pages (admin/password)

Yeah, this is a really tricky issue in a lot of SS applications (the SiteTree is a great example). I would recommend using the `filterByCallback` method on `DataList`. It's a...

For the most part, there shouldn't be any API changes. `getRange()` was deprecated a while back, should be replaced with `limit()`. All those UI regressions you're seeing are due to...

You can use `.Format()` for this. https://github.com/silverstripe/silverstripe-framework/blob/3/model/fieldtypes/Date.php#L144

`$DateRange` is just a helper function. To use $Format, you'll need to use the properties directly. `$StartDate.Format(...) $EndDate.Format(...)`

Good question! SilverSmith has limited handling of $belongs_many_many at this point. The name is automatically assigned as the plural form of the related class. The rationale behind this is that...