0

私はmagentoの高度な検索にいくつかの変更を加えようとしています。入力を1つずつ表示させたいのですが。したがって onchange='showNext()'、すべての入力にを入力する必要がありますが、入力は次のようにPHPによって生成されます。

return $this -> _getSelectBlock() -> setName($name) -> setId($attribute 
->getAttributeCode()) -> setTitle($this -> getAttributeLabel($attribute)) 
-> setExtraParams("") -> setValue($this -> getAttributeValue($attribute))
-> setOptions($options) -> getHtml();

あなたの助けのためのthx。

4

1 に答える 1

0

これを試して

return $this -> _getSelectBlock() -> setName($name) -> setId($attribute 
->getAttributeCode()) -> setTitle($this -> getAttributeLabel($attribute)) 
-> setExtraParams("onchange=\'showNext()\'") -> setValue($this -> getAttributeValue($attribute))
-> setOptions($options) -> getHtml();
于 2012-08-03T12:26:11.967 に答える