Currently in version 2.0.3, when creating Entity list and detail, the option to mark the modal does not appear.
Is it a bug? or is there a different way to do it?
photo of old versions:
current version photo:
Thanks!
Currently in version 2.0.3, when creating Entity list and detail, the option to mark the modal does not appear.
Is it a bug? or is there a different way to do it?
photo of old versions:
current version photo:
Thanks!
Hi!
This option is no longer available. Its task was to write the forceDialog
property for the edit screen.
So this property is no longer available for DetailView
by design.
Use properties for actions that open this view:
<action id="create" type="list_create">
<properties>
<property name="openMode" value="DIALOG"/>
</properties>
</action>
<action id="edit" type="list_edit">
<properties>
<property name="openMode" value="DIALOG"/>
</properties>
</action>
Regards,
Dmitriy