Hi again,
Ok, I got a working solution now for StackContainer. I just found the
view helper Zend_Dojo_View_Helper_Button and got it running. Is there
any other way than passing the "dijit.byId('container').back()" command
to the "onClick" attribute? Maybe I use the third parameter of the view
helper to pass the command and this would create the right configuration
for the ?
------------------------------------------------------------------------
<?= $this->button('back', '<', array(), array(
'onClick' => "dijit.byId('container').back()")
) ?>
<span dojoType="dijit.layout.StackController"
containerId="container"></span>
<?= $this->button('forward', '>', array(), array(
'onClick' => "dijit.byId('container').forward()")
) ?>
------------------------------------------------------------------------
And then I did not manage to find a StackController view helper. There
is none yet, is there? How would it look like?
Thanks again,
Ralf