Avatar

Correct answer by
Community Advisor

If you look here : http://microsite.omniture.com/t2/help/en_US/mobile/ios/phonegap_methods.html

You will see the method trackAction, I think you should use this one for any other interaction than page load : 
     
trackAction

Tracks an action in your app. Actions are the things that happen in your app that you want to measure, such as "logons", "banner taps", "feed subscriptions", and other metrics.

Syntax:

  1. ADB.trackAction(string action[,JSON cData]);
 

Example:

  1. ADB.trackAction("login");
 
  1. ADB.trackAction("login", {"user":"john","remember":"true"});
 

 

These details are from the IOS 4.x library but you will find them in each library version doc. All dev docs are here : http://microsite.omniture.com/t2/help/en_US/reference/developer.html

View solution in original post