Initialization Option Items API

data_table_index

Specifies a single row which sets a starting point in the dynamic content dataset for all Items in the assessment.

You would want to use this option so that you can select a specific dynamic content row to start with for the learner, for example.

This index value is zero-based, so a value of 0 will return the first row.

Examples

// Start all Items in the assessment with the 4th row
var initializationOptions = {
    "dynamic_items": {
        "data_table_index": 3
    }
    // ...
};

Values

Request object key dynamic_items.data_table_index

Type integer

Caveats

  • Using a try_again configuration will take precedence and will ignore the value set for the data_table_index.

  • Setting a data_table_index value will override data_table_seed option if they are passed simultaneously.

Was this article helpful?