是否可以制作一个表单(在后端自定义选项卡中),其中包含两个下拉字段,第二个字段取决于第一个字段,其值也取决于第一个字段中的选择。
这是一个例子:
[Attributes] <-- 'Select' field with all Attributes
[Values] <-- 'Select' field with all Values of selected Attribute in above field
答案 0 :(得分:0)
您可以使用after_element_html键添加自定义html或javascript。
$fieldset->addField("xxx", "text", array(
"label" => Mage::helper("xxx")->__("Field"),
"name" => "xxx",
"class" =>"validate-number",
"after_element_html"=>"<script>your javascript code here</script>"
));