我有一个包含两个输入的表格:
echo $this->Form->input( articulo_id , array( empty => ---Select--- ));
echo $this->Form->input( numeral_id , array( empty => ---Select--- , type => hidden ));
当第一个改变状态时,第二个被更新并自动填充;更新方式如下:
$options = array( url => getArtNum , update => EvidenciaNumeralId );
echo $ajax->observeField( EvidenciaArticuloId , $options);
The thing is that I need the second one to be shown after doing the update. Is there a way to do it?
我知道如果我只是删除类型=>;隐藏
表单中的输入将显示出来,但我需要它保持隐藏状态,直到第一个更改为止。
提前谢谢。