Login Page - Create Account

Support Board


Date/Time: Sun, 12 Jul 2026 00:57:10 +0000



Post From: Sort Study Documentation by DisplayOrder

[2026-05-27 15:11:31]
User719512 - Posts: 447
Hi John, this happens when a custom study uses .DisplayOrder to set an order different than the order input variables are declared that I see the issue.

For example,


SCInputRef Input0 = sc.Input[0];
SCInputRef Input1 = sc.Input[1];
// set name, etc
Input1.DisplayOrder = 1;
Input0.DisplayOrder = 2;

This results in the .html listing Input0, then Input1 descriptions, when DisplayOrder would have it Input1 then Input 0.