View difference between Paste ID: CwAup5YF and zgkQ4TcH
SHOW: | | - or go back to the newest paste.
1
presenter:
2
$form->addDynamic('snippety', function (Container $snippets) use ($presenter) {
3
                $snippets->addText('street', 'Ulice');
4
                $snippets->addText('city', 'Město');
5
                $snippets->addText('zip', 'PSČ');
6
        }, 1);
7
8
9
10
template:
11-
            {$snipet['name']->control} {$snipet['name']->label}
11+
12
13
            {$snipet['street']->control} {$snipet['street']->label}
14
            {$snipet['city']->control} {$snipet['city']->label}
15
            {$snipet['zip']->control} {$snipet['zip']->label}
16
        
17
        {/foreach}
18
19
20
21
chyba na riadku 23: 
22
21:    <?php $iterations = 0; foreach ($form['snippety']->containers as $snipet): ?>
23
22:    
24
23:                <?php echo Nette\Templating\Helpers::escapeHtml($snipet['name']->control, ENT_NOQUOTES) ?>