rafapas22 Posted July 13, 2016 Share Posted July 13, 2016 Buenos días. Estoy usando el helperform y quiero poner una imagen en la etiqueta de cada opción, para que sea más gráfico escogerla opción correcta, como lo hago? array( 'type' => 'radio', 'label' => $this->l('Type button'), 'name' => 'typeButton', 'class' => 't', 'values' => array( array( 'id' => 'default', 'value' => 1, 'label' => $this->l('btn-default') AQUI TENGO QUE PONER UNA IMAGEN PERO NO SE COMO ), array( 'id' => 'primary', 'value' => 2, 'label' => $this->l('btn-primary') AQUI TENGO QUE PONER UNA IMAGEN PERO NO SE COMO ) ), 'is_bool' => true, 'required' => true ), Gracias Link to comment Share on other sites More sharing options...
buhoplace Posted July 13, 2016 Share Posted July 13, 2016 array( 'type' => 'radio', 'label' => $this->l('Type button'), 'name' => 'typeButton', 'class' => 't', 'values' => array( array( 'id' => 'default', 'value' => 1, 'label' => $this->l('btn-default').'<img src="myimage.png" > ', 'desc' => '<img src="myimage.png" > ' //en desc lo muestra debajo del input ), array( 'id' => 'primary', 'value' => 2, 'label' => $this->l('btn-primary').'<img src="myimage.png" > ', 'desc' => '<img src="myimage.png" > ' //en desc lo muestra debajo del input ) ), 'is_bool' => true, 'required' => true ), Link to comment Share on other sites More sharing options...
rafapas22 Posted July 13, 2016 Author Share Posted July 13, 2016 ok, en el desc no sé porque no me ha funcionado pero poniendo en el label me ha ido perfect. Gracias Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now