Jaké jsou možnosti wrappers
Upozornění: Tohle vlákno je hodně staré a informace nemusí být platné pro současné Nette.
- Tepster
- Člen | 28
Zdravím,
chtěl bych se zeptat, co všechno mohu udělat s wrappers? Mohu třeba přímo nastavovat atributy html elementů? Jak mám nastavit třídu labelu?
A pak bych potřeboval, aby mi do inputu necpal „required“, ačkoli ten input required opravdu je. Ve wrappers jsem ‚.required‘ u ‚control‘ i u ‚pair‘ vymazal, ale stejně se mi to ve výsledném html zobrazuje.
Děkuji
- Tepster
- Člen | 28
public $wrappers = array(
'form' => array(
'container' => NULL,
),
'error' => array(
'container' => 'ul class=error',
'item' => 'li',
),
'group' => array(
'container' => 'fieldset class=fieldset',
'label' => 'legend class=legend',
'description' => 'small',
),
'controls' => array(
'container' => '',
),
'pair' => array(
'container' => 'p class=inline-label',
'.required' => '',
'.optional' => NULL,
'.odd' => NULL,
'.error' => NULL,
),
'control' => array(
'container' => '',
'.odd' => NULL,
'description' => 'small',
'requiredsuffix' => '',
'errorcontainer' => 'span class=error',
'erroritem' => '',
'.required' => '',
'.text' => 'input',
'.password' => 'input',
'.file' => 'text',
'.submit' => 'button',
'.image' => 'imagebutton',
'.button' => 'button',
),
'label' => array(
'container' => '',
'suffix' => NULL,
'requiredsuffix' => '',
),
'hidden' => array(
'container' => 'div',
),
);
Editoval Tepster (7. 11. 2014 15:48)