m |
|||
Line 11: | Line 11: | ||
:;<code>[gn:act_convertTimestampToFormat]|[source,target,format]</code> | :;<code>[gn:act_convertTimestampToFormat]|[source,target,format]</code> | ||
+ | |||
+ | with timezone | ||
+ | |||
+ | :;<code>[gn:act_convertTimestampToFormat]|[source,target,format,manualTimeZone]</code> | ||
:{| class="wikitable sortable" style="font-size: 85%; text-align: left;" | :{| class="wikitable sortable" style="font-size: 85%; text-align: left;" | ||
Line 35: | Line 39: | ||
* Valid formats: | * Valid formats: | ||
**[http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html formats] | **[http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html formats] | ||
+ | |- | ||
+ | | <code>manualTimeZone</code> | ||
+ | | timeZone in which timestamp will be shown. By default it's local timezone. If <code>DATE</code> datatype is used then default timezone is <code>GMT</code> | ||
+ | * Valid timezones: | ||
+ | **[https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html timezone construct] | ||
|- | |- | ||
|} | |} |
Revision as of 05:32, 4 May 2018
gn:act_convertTimestampToFormat
- Description
- Action used to convert timestamp (numerical value) from certain widget to human readable format.
- Action returns
- void
Action signatures
Convert timestamp from certain widget
[gn:act_convertTimestampToFormat]|[source,target,format]
with timezone
[gn:act_convertTimestampToFormat]|[source,target,format,manualTimeZone]
Parameter Description source
source from where value for conversion will be retrieved target
target from where the while action is using value as expression comparsion parameter format
format in which source value will be converted - Valid formats:
manualTimeZone
timeZone in which timestamp will be shown. By default it's local timezone. If DATE
datatype is used then default timezone isGMT
- Valid timezones:
Example
@+id/timeInDATA
- source@+id/clockTimeIn
- target@string/screen3_timeFormat
- format e.g.dd.MM.yyyy H:mm:ss
- ⤷
[gn:act_convertTimestampToFormat]|[@+id/timeInDATA,@+id/clockTimeIn,@string/screen3_timeFormat]
- ⤷