FernandoHumanes To do CRUD management in a Mysql table, where we have a field defined with the type "datetime", what SVAR CORE component do we have to use to manage this field? Greetings,
Helga Hello, In SVAR, we do not parse date strings within the components (controls or mature widgets). The only possible way to pass dates is converting them to JS Date objects before using them in DatePicker or TimePicker. Unfortunately, now there's no control to edit both date and time simultaneously. But you can create a custom one that combines DatePicker and TimePicker, as in Gantt Editor here https://github.com/svar-widgets/gantt/blob/main/svelte/src/components/editor/DateTimePicker.svelte This is how it looks like (double-click any task) https://docs.svar.dev/svelte/gantt/samples/#/duration-unit/willow
FernandoHumanes Thanks, The UI of the example is very good and I like it. I find it a little complex for those of us who are new to SVAR components, but it totally works and has many possibilities. Thank you,