Last updated on
Apr 27, 2021
Before you begin, see Event Functions.
Handling the back button event
<cfclientsettings enableDeviceAPI=true> <cfclient> <cfset cfclient.events.onBackButton("callbackfunc")> <cffunction access="public" name="callbackfunc" returntype="void" > <!--- Back button pressed ---> </cffunction> </cfclient>
Handling the critical battery event
<cfclientsettings enableDeviceAPI=true> <cfclient> <cfset cfclient.events.onBatteryCritical("callbackfunc")> <cffunction access="public" name="callbackfunc" returntype="void" > <!--- Battery critically low! ---> </cffunction> </cfclient>
Handling the low battery event
<cfclientsettings enableDeviceAPI=true> <cfclient> <cfset cfclient.events.onBatteryLow("callbackfunc")> <cffunction access="public" name="callbackfunc" returntype="void" > <!--- Battery low! ---> </cffunction> </cfclient>