La forma de hacerlo es así:
Using perl Syntax Highlighting
- $form->attributes->{id} = 'form';
Coloreado en 0.003 segundos, usando GeSHi 1.0.8.4
$form objeto de FormFu y donde el .yml es:
Using xml Syntax Highlighting
- ---
- attributes:
- id: form
- class: fancy_form
Coloreado en 0.000 segundos, usando GeSHi 1.0.8.4
Ahora quiero editar el style de mi .yml
Using xml Syntax Highlighting
- ---
- indicator: submit
- elements:
- - type: Submit
- name: submit
- value: Submit
- container_attributes:
- style: ""
Coloreado en 0.000 segundos, usando GeSHi 1.0.8.4
y no encuentro forma de editarlo...
He intentado con:
Using perl Syntax Highlighting
- $form->elements->Submit->container_attributes->{style} = "display:none;";
- # o con
- $form->elements->Submit->{style} = "display:none;";
Coloreado en 0.001 segundos, usando GeSHi 1.0.8.4
¿ Cuál sería la forma correcta para editar el style de ese submit ?
Gracias.