SAP / fundamental-react

React implementation of the reusable component library designed in Fundamental Library Styles
https://sap.github.io/fundamental-react
Apache License 2.0
189 stars 78 forks source link

Date Picker is not displayed entirely in the screen, if added in Dialog. #1280

Open Megha-sketch opened 3 years ago

Megha-sketch commented 3 years ago

Description

Date Picker is not displayed entirely in the screen. The lower part of calendar is not viewable on the screen, if we add date picker inside dialog. Even the scroll on the page is scrolling the main

Expected Result Date picker should get open inside the dialog and the dialog gets a scroll if required.

Versions

Storybook 6.1.11


_NOTE: Where applicable, please include uncropped screen c DatePicker_DialogIssue aptures._

DISCLAIMER: After triaging an issue, the fundamental-react team will see if it can be reproduced or confirmed. If more information is needed, the fundamental-react team will contact the author. Any issues awaiting responses from the author for more than 7 days will be closed. The author can re-open the issue at a later time if they can present the requested information.

CODE `export const header = () => { let [showDialog, setShowDialog] = useState(false); return ( <> <Button onClick={() => setShowDialog(true)}> Show Dialog <Dialog actions={[ (), () ]} header='Header' onClose={() => setShowDialog(false)} show={showDialog} title='Product Added'>

The new product have been added to your catalog.

            <p>Automatic Product ID: <b>PD-3465334</b></p>
            <p>Expiration date: <b>13/03/2018</b></p>
            <DatePicker/>
        </Dialog>
    </>
);

};`

github-actions[bot] commented 3 years ago

Hello @Megha-sketch, thank you for using fundamental-react! The fundamental-react team will triage your issue as soon as possible.

Megha-sketch commented 3 years ago

Is there is any progress on this issue? Our customers are facing problem due to this.