- Add a TextField
- Open Object-> Binding
- Data Binding maintain “$record.SFPSY.DATE” as below
txtCurTime.rawValue = Num2Time(Time(), "HH:MM:SS") |
txtCurTime.rawValue = Num2Time(Time(), "HH:MM:SS")
or
var oCTime = new Date(); this.rawValue = oCTime.getHours() + ":" + oCTime.getMinutes() + ":" + oCTime.getSeconds(); |
var oCTime = new Date(); this.rawValue = oCTime.getHours() + ":" + oCTime.getMinutes() + ":" + oCTime.getSeconds();