pharo-users@lists.pharo.org

Any question about pharo is welcome

View all threads

Fwd: DateInput5 in Seaside widget preinitialized value view

OV
Oswall Verny Arguedas C.
Mon, Sep 6, 2021 5:24 PM

Regarding dateInput5 in Seaside.
How a previously initialized date can be displayed in the form's dateInput5
widget.
I use a pre-initialized date type value that is a property of the object to
render on the form.

html label
for: 'startDate';
with: 'Start Date:  '.
html dateInput5
on: #startDate of: self contract;
id: 'startDate';
step: 1;
title: 'Start Date';
value: self contrato startDate;
required.

Widget don't render date initialized.
I can't get it to show up.

Thanks,
Oswall

Regarding dateInput5 in Seaside. How a previously initialized date can be displayed in the form's dateInput5 widget. I use a pre-initialized date type value that is a property of the object to render on the form. html label for: 'startDate'; with: 'Start Date: '. html dateInput5 on: #startDate of: self contract; id: 'startDate'; step: 1; title: 'Start Date'; value: self contrato startDate; required. Widget don't render date initialized. I can't get it to show up. Thanks, Oswall