0

我在任何地方都找不到要搜索的定义。在 mymodule namespace/modulename/etc/system.xml我有:

<faq_input translate="label">
    <label>Question Collor: </label>
    <comment>example: #000000</comment>
    <frontend_type>text</frontend_type>
    <sort_order>20</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
</faq_input>

我需要添加onclick事件,例如:

<input type="text" onclik="code(myevent)" value="xxx" >
4

1 回答 1

0

您需要使用 a <frontend_model>,您可以在核心中找到一些示例(例如 in app/code/core/Mage/Catalog/etc/system.xml)。

前端模型必须是一个继承自 的块Mage_Adminhtml_Block_System_Config_Form_Field,它有一个_getElementHtml()方法,您可以在呈现之前将自己的代码应用到表单元素。例如:

protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
{
    $element->setOnclick('launchExample();');
    $html = $element->getElementHtml();
    $html .= '<script type="text/javascript">function launchExample(){ alert("This is an example"); }</script>';
    return $html;
}
于 2013-08-08T08:09:22.890 回答