Questions tagged «grid-layout»

2
如何以管理面板网格形式上传多张图片?
在这里,我想以magento的管理面板网格形式上传多个图像。我创建了以管理面板网格形式上传的图片。在这里,我附上了我的图片上传编码。 [....] $fieldset->addField('image', 'image', array( 'name' => 'image', 'label' => Mage::helper('magentostudy_design')->__('design Image'), 'title' => Mage::helper('magentostudy_design')->__('design Image'), 'required' => true, 'disabled' => $isElementDisabled )); [....] 当我使用此参数更改多个上传图像时。'multiple'=> 'multiple' 这是我的代码: [....] $fieldset->addField('image', 'image', array( 'name' => 'image', 'multiple' => 'multiple', 'mulitple' => true, 'label' => Mage::helper('magentostudy_design')->__('design Image'), 'title' => Mage::helper('magentostudy_design')->__('design Image'), 'required' => …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.