7921 Posts in 1359 Topics by 933 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Uploadify in a subclassed form – trouble...
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 469 Views |
-
Uploadify in a subclassed form – trouble...

25 February 2011 at 1:06am
Hi there
I'm trying to use Uploadify in a subclassed form. My form constructor is looking like this:
function __construct($controller, $name) {
$Uploadify = new FileUploadField('Picture', 'Some title', array (
'buttonText' => 'Click me!'
));
$fields = new FieldSet(
new TextField('FirstName', 'First name'),
new EmailField('Email', 'Email address'),
$Uploadify
);
$actions = new FieldSet(
new FormAction('submit', 'Submit')
);parent::__construct($controller, $name, $fields, $actions);
}It is also possible for me to get the Fieldholder into my template with this code:
$dataFieldByName(Picture).FieldHolder
However, when I try to upload I get a 404 error in charles... How can I debug this?
Thanks for any help
Joel
-
Re: Uploadify in a subclassed form – trouble...

1 March 2011 at 12:08am
Problem solved. The error was caused by wrong implementation of the form in the controller. Uploadify works now in my subclassed form.
| 469 Views | ||
|
Page:
1
|
Go to Top |

