Is it possible to set a date format in a grid column? I found only a numberMask for numeric columns. Currently a date is always shown as "dd-mm-yyyy hh24:mi:ss" and in my case the time is always 00:00:00, so I would like to define a format which only shows the date portion without time. While we enable sorting and filtering on the column, it has to be a real date column, because otherwise you have no date-filter where you can define ranges. Thanks for your help. Kai |
Hi Kai, To achieve your request you can use dateField component in your grid column and bind your date datatyped datasource column to this dateField component. dateField component has the dateFormat attribute where you can specify your date format. Hope this helps, |