Cris
March 11, 2022, 9:10am
1
Hi,
I’m following along this receipe , which works very well so far – thanks for that! =)
I’d like to add a toggle field with a default value of true
to the fields array in
/site/plugins/products/dialogs/fields.php
,
but when I open the ‘create’ dialog, the default value is ignored (still false).
What am I missing?
Thanks in advance!
/* /site/plugins/products/dialogs/fields.php */
use Kirby\Products\Product;
use Kirby\Toolkit\A;
return [
//...
'confirm' => [
'label' => 'Confirmation',
'type' => 'toggle',
'default' => true,
'text' => [
false => 'nope',
true => 'japp'
]
]
];
Cris
March 11, 2022, 12:04pm
2
I just checked, if defaults of other field types would work, but they don’t.
Though it’s possible to store default values in the create method of the Product.php
class, it would be nice to also have it visually in the panel view.
Any help would be much appreciated.
Can’t help from the top of my head, unfortunately, and would have to look into it more in-depth (tonight).
1 Like
Well, this is still open:
opened 12:45PM - 04 Dec 21 UTC
type: regression 🚨
**Describe the bug**
Fields of a custom dialog built with `k-form-dialog` d… o not show the configured default value.
I became aware of the problem by [this issue](https://github.com/steirico/kirby-plugin-custom-add-fields/issues/55) of the `Add Fields Plugin`. My investigations showed that the problem is not related to the plugin.
**To Reproduce**
1. Get a fresh kirby starterkit 3.6.0
2. Add an additional field with a default value to the `Change Title Dialog` by adding the following code at `kirby/config/areas/site/dialogs.php` line 191:
```php
'defaultTest' => [
'label' => 'Default Test',
'type' => 'text',
'required' => false,
'default' => 'Hello World',
'disabled' => false
],
```
3. Login to the panel and navigate to a page, e.g. `Exploring the universe`
4. Click `Settings` -> `Rename` in order to open the `Change Title Dialog`
**Expected behavior**
I would expect to see the `Change Title Dialog` with the additional field labeled `Default Test` and the default text `Hello World`.
Instead, the additional field appears but the default text is missing:

The default value is transmitted with the API response:

**Kirby Version**
3.6.0
So, if it’s related the issue is at least “known”.
1 Like
Cris
March 11, 2022, 1:12pm
5
Thanks Roman,
I didn’t know about this issue, but it seems to be related to my problem.
I will patiently wait for a fix then
That looks like it is related, indeed.
It´s an older topic but just stumbled over the same problem and the solution is in the related github Issue. So maybe its easier or helfpul if the solution is also shown here
'component' => 'k-form-dialog',
'props' => [
...
'value' => [
'title' => $page->title()->value(),
'slug' => $page->slug(),
'defaultTest' => 'Hello World'
]
]
https://github.com/getkirby/kirby/issues/3994#issuecomment-1080667518
1 Like