I am using the following SmartClient version : SmartClient Version: v12.1p_2022-07-19/PowerEdition Deployment (built 2022-07-19)
Brower information : Google Chrome Version 114.0.5735.199 (Official Build) (64-bit)
I set the type of some field to 'date' like the following in the ds.xml file.
<field name="activationdate" type="date"></field>
And, the client codes are like the following.
final ListGridField activationDate = new ListGridField( "activationdate", "Activation Date");
activationDate.setWidth("20%");
activationDate.setCellFormatter(getDateFormatterForListGridField());
activationDate.setAlign(Alignment.LEFT);
listGridFieldList.add(activationDate);
BTW, the Data Chooser control does not get the exact date selected in ListGrid Filter.
Is there any other setting I need to configure to make it work correctly?
Brower information : Google Chrome Version 114.0.5735.199 (Official Build) (64-bit)
I set the type of some field to 'date' like the following in the ds.xml file.
<field name="activationdate" type="date"></field>
And, the client codes are like the following.
final ListGridField activationDate = new ListGridField( "activationdate", "Activation Date");
activationDate.setWidth("20%");
activationDate.setCellFormatter(getDateFormatterForListGridField());
activationDate.setAlign(Alignment.LEFT);
listGridFieldList.add(activationDate);
BTW, the Data Chooser control does not get the exact date selected in ListGrid Filter.
Is there any other setting I need to configure to make it work correctly?
Comment