KickAssets
KickAssets copied to clipboard
The KickAssets module for SilverStripe is an alternative to AssetAdmin
It is almost impossible to delete folders, even if they are empty.
When I set a folder for an upload field then everything works a treat, EXCEPT, if I browse to another folder to select a file then it does not work...
long folder titles are unworkable because they end up with ... in the middle, making them unreadable
This patch allows for the field to work normally if the file relationship class has not been set to use ManyManySortable via _config.php with: [code] ManyManySortable::add_sortable_many_many_relations(array('Class' => 'RelationName')); [\code] This...
When new files are uploaded and attached via the 'From your computer' button the new files were pushed to the top of the stack resulting in the sort order being...
Having manually sorted the order of files appearing in the MultipleFileAttachmentField, adding a new file reverts the order back to alphabetical.
When you start silverstripe from a page that doesn't have any KickAssets fields included and then go to edit another page that does have a MultipleFileAttachmentField with the ManyManySortable extension...
After creating the ManyManySort field manually everything seems to work as should. [26-Feb-2012 05:37:33] Error at sapphire/core/model/MySQLDatabase.php line 525: Couldn't run query: INSERT INTO "SomePage_MyFiles" ("SomePageID","FileID" , "ManyManySort") VALUES (16,...
I use setDefaultFolder on two FileAttachmentFields in the same DataObject. I pass the same folder path to each one. I expected that if the folder did not exists the 1st...