In this article
8 Jan 2025
Platform | Version |
Windows | 2025.1.2 |
Improvements
The following changes have been made for CAPI App for Windows:
Auto-complete for open text fields now disabled
Test Survey option not shown for surveys using Jscript.NET scripting engine
27 Jan 2025
Platform | Version |
Windows | 2025.1.8 |
iOS | 2025.1.5 |
Android | 2025.1.5 |
Improvements
The following changes have been made for CAPI App:
Updated survey engine with latest from CAWI (web)
Survey Overview tab – ability to show custom variable counts
3DGrid input validation failing
SetRespondentRecordValues() now flags the respondent for upload.
Overview tab – Custom Variable Counts
It is now possible to display counts for a specific survey variable.
Define the list of answer item labels to display and the value as defined for the variable:
var answerItems = [{ label: "No one home", value: "1" },
{ label: "Busy, come back later", value: "2" },
{ label: "Will not respond", value: "3" } ];
Indicate which survey variable counts to display and include the answer items defined above. In the following example, the survey question ID is “LastOutcome”
var jsonString = JSON.stringify({
variable: {
id: "LastOutcome",
label: "Last Outcome Counts"
},
answerItems
})
Finally, apply this definition to a reserved device variable
SetSurveyDeviceVariable("__systemOverviewTabVariable", jsonString)
Optionally, you can hide the default summary stats. The following example will hide the stats:
SetSurveyDeviceVariable("__systemOverviewTabShowStats", "0")
Requirements:
The variable must be of type single or multi choice
The variable must be a respondent variable and shown on the Respondent tab
The information displayed will be the counts of each category item associated with the variable and will only be data contained on the current device (so essentially only data shown on Respondent tab). For example, if a respondent is unassigned, the counts shown on the Overview tab would adjust to reflect only what is current on the device.
Only one variable can be designated per survey