Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

Moderators: martimiz, UncleCheese, Sean, Ed, biapar, Willr, Ingo, swaiba

Feature Requests


Go to End


75 Posts   32295 Views

Avatar
otherjohn

Community Member, 125 Posts

13 August 2010 at 7:23am

Agggh. I can't find my changes. I must have overwritten the. I will post them if I find them.

How far have you gotten with S3 implementation?
John

Avatar
UncleCheese

Forum Moderator, 4102 Posts

13 August 2010 at 7:42am

It's stable. It won't be in the SWFUpload module, though, since I'm no longer supporting that. It will be part of a new module called Uploadify.

Avatar
otherjohn

Community Member, 125 Posts

13 August 2010 at 7:56am

Well, when you are opening it up for testing, I would love to put it to practice!!!

Avatar
zenmonkey

Community Member, 545 Posts

1 September 2010 at 8:59am

Just wondering if there are still plans to implement an export to csv?

Avatar
Blackdog

Community Member, 156 Posts

2 December 2010 at 1:59am

I am working on a site which has becoming very large due to an extensive Product / Category setup.

I had used the SimpleTreeDropdownField on various DOM around the site. However, due to SiteTree size this is causing the popup to take ages to load.

A ajax site tree reflecting the Page Tree would be a great feature.

Avatar
Blackdog

Community Member, 156 Posts

2 December 2010 at 2:28am

I just did some digging around with Firebug and found that the issue with the standard TreeDropdownField working in a popup was just a clash between jquery & jquery improvements being loaded again in TreeDropdownField.php

I commented out the following lines in sapphire/forms/TreeDropdownField.php and the ajax site tree works fine in the popup.

Line 115: Requirements::javascript(SAPPHIRE_DIR . '/thirdparty/jquery/jquery.js');
Line 116: Requirements::javascript(SAPPHIRE_DIR . '/javascript/jquery_improvements.js');

I am yet to see what issues this might cause throughout the cms.

Avatar
Tonyair

Community Member, 81 Posts

16 December 2010 at 1:48am

Batch actions will be extremely usefull:

+ Select a number of objects:
++ to reorder them
++ to remove them

+ Removing all objects

Avatar
idefix

Community Member, 11 Posts

31 January 2011 at 11:03pm

Is it possible to preset the datepickerfield with a date value?
There is a parameter value, but it isn't taking effect in our context even the function setValue doesn't take effect.

Is it my problem or are there any difficulties with special date format?

My Code:
$start = new DatePickerField("Start", "Start",date("d/m/Y"));

but the Field is not preset with the actual date.

By the way with legacydatetimefield (CalendarDateField) it is the same feature.

Any help?

Thanks in advance