checkbox setDefaultValue(true)

Upozornění: Tohle vlákno je hodně staré a informace nemusí být platné pro současné Nette.
masterr
Začátečník | 141
+
0
-

koukal jsem na forku
Ale stejně mi nefunguje nic z tohoto:

	$form->addCheckbox('name', 'Label:')->setDefaultValue(true);
	$form->addCheckbox('name', 'Label:')->setDefaultValue(1);
	$form->addCheckbox('name', 'Label:')->setDefaultValue(TRUE);

	$form->addCheckbox('name', 'Label:')->setValue(true);
	$form->addCheckbox('name', 'Label:')->setValue(TRUE);
	$form->addCheckbox('name', 'Label:')->setValue(1);

Jak je to možné?

Mám nette 2.0.5

use Nette\Application\UI\Form;
		protected function createComponentSearchForm()
	{
		$form = new Form();
$form->addCheckbox('name', 'Label:')->setValue(true);
}
eldest
Člen | 58
+
0
-

masterr napsal(a):

koukal jsem na forku
Ale stejně mi nefunguje nic z tohoto:

	$form->addCheckbox('name', 'Label:')->setDefaultValue(true);
	$form->addCheckbox('name', 'Label:')->setDefaultValue(1);
	$form->addCheckbox('name', 'Label:')->setDefaultValue(TRUE);

	$form->addCheckbox('name', 'Label:')->setValue(true);
	$form->addCheckbox('name', 'Label:')->setValue(TRUE);
	$form->addCheckbox('name', 'Label:')->setValue(1);

Jak je to možné?

Mám nette 2.0.5

use Nette\Application\UI\Form;
		protected function createComponentSearchForm()
	{
		$form = new Form();
$form->addCheckbox('name', 'Label:')->setValue(true);
}

Ahoj,
a zkoušel jsi

$form->addCheckbox("test", "Test")
	->setAttribute("checked", "checked");

?

Editoval eldest (5. 8. 2013 13:11)

David Matějka
Moderator | 6445
+
0
-

divny, jak formular (respektive ten checkbox) vykreslujes? zkus aktualizovat na nejnovejsi 2.0.* verzi

masterr
Začátečník | 141
+
0
-

No, nechápu, na jednou funguje

->setDefaultValue(1);

a předtím nic. Nacachovaný soubory jsem mazal i předtím.