Modal version 2.0.3

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:

MicrosoftTeams-image

current version photo:

image

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

1 Like