Creation Time
The creation time field saves the time when the record was created (automatically generated)
Description
| Item | Content |
|---|---|
| Category | Static Field |
| Sortable | Yes |
| Filterable | Yes |
| Supported Filter Types | Equal, Not Equal, Empty, Not Empty, Less Than, Greater Than, Less Than or Equal, Greater Than or Equal, Within Range, Not Within Range |
Settings
| Setting | Description |
|---|---|
| Display format | Format of the creation time display |
| Custom display format | Use expressions to customize rendering display content |
Database Storage Format
| Field Type | Description |
|---|---|
| timestamp(6) | Store date and time |
Data Format
Note
- If data already exists in the table and then the creation time field is added, the creation time field of this original data is
null. If you need to update this data, you need to call the script function
javascript
informat.table.update();
//Or
informat.table.updateList();Usage Examples
Display format

Custom display format

js
${Misc.formatDate(record.formatDateDiy,'yyyy-MM-dd HH:mm:ss SSS')}
${Misc.formatDate(record.formatDateDiy,'Now is yyyy year MM month dd day HH hour mm minute ss second SSS millisecond')}Display Effect
Display format

Custom display format



