Richard Rudy

Results 11 comments of Richard Rudy

I built a system with nested blocks. I wouldn't advise it based on the the current blocks module. The problem is less with blocks module and more with how SS...

As I said, the problem is less with the actual module more with the way Silverstripe Handles versioned many_many relations. Elemental uses a one to many relation so it may...

You shoud be able to add an auto increment to the onAfterWrite function of the block to modify the SIteTree_Blocks

Something Like [this](https://gist.github.com/thezenmonkey/42b97bd7357770762ae7badd0ab15ce0) I'd need to craete a similar check for BlockSets before creating a PR

Somehthing like this [gist](https://gist.github.com/thezenmonkey/42b97bd7357770762ae7badd0ab15ce0) applied to your Block subclass will work for blocks on page. I haven't done it for blocksets yet.

I've got the initial sort working, though it seems a littl hacky to me. I use the order of the file IDs from $_POST['Images']['Files'], if you can think of a...

Seems to be a JavaScript issue, under 3.1.5 , the GalleryField is throwing an Uncaught Excpetion Error with teh entwine library. Using 1.1 version of the module fixes upload

From what I can tell the main prblem with using the focus point module is that the ItemEditFrom that the gallery module shows calls the gallery doEdit on save. doEdit...

Take a look at the following pull request if you can't wait for Frank to merge. https://github.com/frankmullenger/silverstripe-gallery/pull/23

I worked through something like this a while back on [frankmullenger/silverstripe-gallery](https://github.com/frankmullenger/silverstripe-gallery) It required adding the ParentID to the constructor [Pull Request](https://github.com/frankmullenger/silverstripe-gallery/commit/a1947acd2fb573eecf605fe3f2e3034bcf24ee38). I don't know enough about GridField currently, and I...