You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Python Shiny does not provide a dedicated ui.input_datetime function to allow users to select both date and time in a single input field. This limitation makes it necessary to rely on custom implementations or combine existing components, which can be cumbersome and less intuitive.
I would like to have a ui.input_datetime function in Python Shiny that integrates date and time selection in a single input field. This feature could be based on the HTML5 datetime-local input type, enabling a compact and user-friendly experience.
Example usage:
ui.input_datetime("datetime", "Select Date and Time:", value="2024-01-01T12:00")
Currently, only ui.input_date is available, and there is no straightforward way to incorporate time selection into the UI. Developers are forced to rely on external libraries or manual HTML/CSS customizations.
The text was updated successfully, but these errors were encountered:
choisy-root
changed the title
Add ui.input_datetime for combined date and time input
Please add ui.input_datetime for combined date and time input
Dec 19, 2024
I am frequently facing the same issue and above that sometimes having to select "weeks" in the format "%Y-%W" (e.g. 2025-01).
So it would be probably great to be able to specify the desired format instead of having different functions.
Currently, Python Shiny does not provide a dedicated ui.input_datetime function to allow users to select both date and time in a single input field. This limitation makes it necessary to rely on custom implementations or combine existing components, which can be cumbersome and less intuitive.
I would like to have a ui.input_datetime function in Python Shiny that integrates date and time selection in a single input field. This feature could be based on the HTML5 datetime-local input type, enabling a compact and user-friendly experience.
Example usage:
Currently, only ui.input_date is available, and there is no straightforward way to incorporate time selection into the UI. Developers are forced to rely on external libraries or manual HTML/CSS customizations.
The text was updated successfully, but these errors were encountered: