The use case is:
- a page could have specific page actions
- the drawer is visible if the page has actions (minSize = 0)
- the drawer should be collapsible (minSize = 60)
- via a button at the bottom of the drawer, the user can collapse the drawer
- if the user switches to a page without actions the drawer closes completely
The Issue:
If the minSize is dynamic, the drawer opens for a moment and closes immediately, even if the minSize is set to 200. See the GIF for reference.
Its my guess, that the minSize is not working properly but maybe it could be also the combination of dynamic DxDrawer.opened and DxDrawer.minSize
revealMode = "expand"
openedStateMode = "shrink"
A secondary Task, since 24.2.6 devextreme config(key) does not activate the license.
If you wish, i could pass a reproduction repository. Just name how you want to receive it.
Hello David,
Please refer to the following help topic that describes how to register your license key in the application and get rid of the license-required bar: Licensing.
The behavior you illustrated in the GIF is unexpected and we need to reproduce it on our side to find its cause. Would you please share a demo sample? You can send it as a simplified standalone project or fork our online demo:
Thank you for your quick response!
I have created a CodeSandbox to demonstrate the issue: Reproduction Link.
Behavior Description and Expected Outcome:
I have referred to the documentation: DevExtreme Drawer Configuration.
I suspect this might be a bug. However, if the issue lies in how I am using the drawer component, please let me know. Your guidance would be highly appreciated!
Looking forward to your feedback.
Hello,
Thank you for the detailed description and example.
This issue occurs because the function you passed to the
Drawer | minSize
property is not supported. This option only accepts numbers: minSize.If you need to change options dynamically, use appropriate handlers. When the button is clicked, adjust these options (
isOpen
andminSize
) within the"click"
handler. We've demonstrated how to change the open state throughref
in our demo: Drawer.I hope you find these recommendations helpful. Feel free to reach out if you have more questions or need further assistance.