Changing Slides

Here are HTML code examples that can be used to navigate within CLM presentations in CT Mobile app along with JS Bridge methods, gestures, and button controls.

To jump from the current slide to the slide by its branch number in the clm__Branch__c field and the order number in the clm__Order__c field, add the following code into the current slide markup:

For more information about slide navigation, refer to Navigation in CLM Presentations.
Available with the Remote Detailing functionality.
<a href="#slide23">The slide's link №23</a>

To switch from the current slide to a slide in another CLM presentation, add a label to the clm__APPID__c of the desired CLM presentation record and add the following code into the current slide markup, where appID is the label to the clm__APPID__c field:

<a href="#app:appID">The link to the CLM presentation</a>

To open the first slide of the scenario, add a label to the clm__APPID__c of the desired CLM presentation record, specify the scenario label in the clm__ScenarioName__c of the desired Scenario record, and add the following code into the current slide markup, where the appID is the label to the clm__APPID__c field and scenario_name is the label from the clm__ScenarioName__c field:

<a href="#app:appID:scenario_name">The link to the scenario of the CLM presentation</a>
``