pushpa
pushpa

Reputation: 573

cakephp link on image escape is not working

Image link in the cakephp is not working

$this->Html->link(  
      $this->Html->image('image',array('class' => $class,
                'id' =>'img_id' )), somelink, array('onclick' =>'jQuery(this).modal({width:600,height:400,left:120,top:100}).open(); return false;'),
                                        array(),
                                        array('escape'=>false));

it will output

<a href='link' onclick='jQuery(this).modal({width:600,height:400}).open(); return false;'> &lt; img src='image_path' &gt;   

it is not escaping &lt and > even if i mention escape=>false, but i am not getting where i am missing?

Upvotes: 0

Views: 3299

Answers (2)

chetanspeed511987
chetanspeed511987

Reputation: 2025

echo $this->Html->link(  
 $this->Html->image('image',array('class' => $class,
        'id' =>'img_id' )), '#', array('escape'=>false, 'onclick' => 'jQuery(this).modal({width:600,height:400,left:120,top:100}).open(); return false;','class'=>'linkclass'));

Upvotes: 1

93196.93
93196.93

Reputation: 2761

You have too many arguements. Try this:

echo $this->Html->link(  
  $this->Html->image('image',array('class' => $class,
            'id' =>'img_id' )), 'foo', array('escape'=>false, 'onclick' =>'jQuery(this).modal({width:600,height:400,left:120,top:100}).open(); return false;')
);

Upvotes: 2

Related Questions