-
-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Selectbox auto default value #183
base: master
Are you sure you want to change the base?
Conversation
That's fine, I tried something like this. But beware of that |
I thinking about one property for value sorted by priority like this: class NoValue {
// probably it can be singleton :)
} BaseControl protected $value = [
'value' => new NoValue,
'default' => new NoValue,
'prompt' => new NoValue,
'auto' => new NoValue, // defined by input
];
public function setPrompt($value)
{
$this->value['prompt'] = $value;
}
protected function setValue($value)
{
...
}
public function setDefaultValue($value)
{
...
}
public function getValue()
{
foreach ($this->value as $value) {
if (!$value instanceof NoValue) {
return $value;
}
}
return null;
} This implementation is not for this PR. |
src/Forms/Controls/SelectBox.php
Outdated
@@ -26,6 +26,9 @@ class SelectBox extends ChoiceControl | |||
/** @var mixed */ | |||
private $prompt = false; | |||
|
|||
/** @var bool */ | |||
private $lockAutoDefault = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LockAutoDefault looks weird to me.
It is little bit complicated, in render time. Macro inputif i use {input foo size => 2} It is compiled echo end($this->global->formsStack)["foo"]->getControl()->addAttributes(['size' => 2]); I haven't access to the instance Selectbox. This i can resolve like: echo end($this->global->formsStack)["foo"]->addAttributes(['size' => 2]); Html select n: macro<select n:name="foo" size="2"></select> Know i value of attribute size in compile time? <select size="2"<?php
$_input = end($this->global->formsStack)["foo"];
echo $_input->getControlPart()->addAttributes(array (
'size' => NULL,
))->attributes() ?>><?php echo $_input->getControl()->getHtml() ?></select> |
I don't know how continue this PR. Must macros works from template when set up size? If yes, i need help with n:macro and compile time. @dg wrote anything same, could you paste your resolution or idea? |
2df07d6
to
82e9980
Compare
If you create form with selectbox and render it. Nothing change and submit form, we get first value of items. This unite behavior if you create selectbox and call method getValue() then return first item. It does not matter the order of the called methods. You can see comit named "test".
Example
Old bahavior
Value
null
is out of range.New behavior
What do you think?