User Tools

Site Tools


training_library

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
training_library [2018/12/18 15:38] lucytraining_library [2019/04/01 16:55] lucy
Line 1: Line 1:
 ====== Training Library ====== ====== Training Library ======
 +
 +===== Introduction =====
  
 The training library should give employees the opportunity to download their training content from an overview page called "training library". The large selection of regular e-learning templates in LUCY serves as learning input. The overview page can be sorted by certain topics (video, quiz, test etc.). To use the training library, you have to create the references to the other LUCY templates first. The training library should give employees the opportunity to download their training content from an overview page called "training library". The large selection of regular e-learning templates in LUCY serves as learning input. The overview page can be sorted by certain topics (video, quiz, test etc.). To use the training library, you have to create the references to the other LUCY templates first.
 +
 +
 +===== Creating references to courses within the library =====
  
 **Instruction (Items 1-4 should be performed inside the campaign)** **Instruction (Items 1-4 should be performed inside the campaign)**
Line 73: Line 78:
 Please note, that these links are not available in CSS and Javascript files. Please note, that these links are not available in CSS and Javascript files.
  
-==== Customization of navigation menu ====+ 
 +===== Customization of navigation menu =====
  
 You can customize the navigation in the training library, for example, add a new entry "Security" to the menu: \\ You can customize the navigation in the training library, for example, add a new entry "Security" to the menu: \\
Line 109: Line 115:
  
 {{ training_library_result.png?700 }} {{ training_library_result.png?700 }}
 +
 +
 +===== Tracking which course gets started within the library =====
 +
 +Please add a tracking event into a e-learning course used within the template. To send a LUCY an event that can determine which course was loaded, this function is used:
 +
 +**lucyDispatchEvent(str);**
 +
 +"str" can be any string. Example:
 +
 +**lucyDispatchEvent("Course: This is your course name");** 
 +
 +An  event  can  be  sent at any time. It can be loaded automatically when the user starts the course or you could associate such an event with the click of a button. 
 +
 +**Button example:** 
 +In order to associate an event with a button, you can do this within the HTML code:
 +
 +Eample 1
 +  <button onclick="lucyDispatchEvent('some string')"> Some button </button>
 +
 +Example 2:
 +  <button onclick="buttonfunc()">
 +  Some button
 +  </button>
 +  <script>
 +  function buttonfunc()
 +  {
 +  lucyDispatchEvent('some string');
 +  }
 +  </script>
 +
training_library.txt · Last modified: 2021/10/18 15:16 by lucysecurity