谁能告诉我怎么做. 我的代码是:选择选项
<email_sender translate="label">
<label>E-mail Sender</label>
<frontend_type>select</frontend_type>
<source_model>adminhtml/system_config_source_email_identity</source_model>
<sort_order>0</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</email_sender>
要在选择选项上显示的文本框是:
<interval translate="label">
<label>Interval</label>
<frontend_type>text</frontend_type>
<sort_order>4</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
. 而对于选择我在模型中使用这段代码
public function toOptionArray()
{
return array(
array('value'=>'show_txtbx', 'label'=>Mage::helper('mymodule')->__('Show Textbox')),
array('value'=>'hide', 'label'=>Mage::helper('mymodule')->__('Hide')),
);
}
我该怎么做。在此先感谢。