- 08:59, 3 April 2025 Make oidc work with respondents auth with guid only (hist | edit) [864 bytes] Nguyenduyan (talk | contribs) (Created page with "File:Oidc_authR.jpg Category:Guides")
- 08:44, 3 April 2025 OidcServer2ServerClient class (hist | edit) [3,039 bytes] Nguyenduyan (talk | contribs) (Created page with "{{CGscriptClass_Template |Name=<nowiki>OidcServer2ServerClient</nowiki> |Description=<nowiki>Specification of a Client Authentication oidc client</nowiki> |InheritsFrom=object|Methods= {{CGscriptMethods_Template|ReturnType=Empty|Name=<nowiki>Delete</nowiki>|Description=<nowiki>Delete this client</nowiki>}} {{CGscriptMethods_Template|ReturnType=Empty|Name=<nowiki>Save</nowiki>|Description=<nowiki>Save the Oidc client</nowiki>}} {{CGscriptMethods_Template|ReturnType=Empty|...")
- 08:43, 3 April 2025 OidcAuthenticationFlow class (hist | edit) [4,491 bytes] Nguyenduyan (talk | contribs) (Created page with "{{CGscriptClass_Template |Name=<nowiki>OidcAuthenticationFlow</nowiki> |Description=<nowiki>Specification of a Authentication Flow oidc client</nowiki> |InheritsFrom=object|Methods= {{CGscriptMethods_Template|ReturnType=Empty|Name=<nowiki>Delete</nowiki>|Description=<nowiki>Delete this client</nowiki>}} {{CGscriptMethods_Template|ReturnType=Empty|Name=<nowiki>Save</nowiki>|Description=<nowiki>Save the Oidc client</nowiki>}} {{CGscriptMethods_Template|ReturnType=Empty|Nam...")
- 08:41, 3 April 2025 QuestionnaireBatchJob class (hist | edit) [5,384 bytes] Nguyenduyan (talk | contribs) (Created page with "{{CGscriptClass_Template |Name=<nowiki>QuestionnaireBatchJob</nowiki> |Description=<nowiki>Process each QAS with some custom logic in a optimal way.</nowiki> |InheritsFrom=object|Constructors= {{CGscriptConstructors_Template|Parameters= {{CGscriptParameters_Template|Type=int|Name=<nowiki>questionnaireId</nowiki>|Description=<nowiki>Id of the base questionnaire</nowiki>}} |Description=<nowiki>Process each QAS with some custom logic in a optimal way.</nowiki>}} |Methods= {...")
- 08:40, 3 April 2025 Workflow setGlobal (hist | edit) [683 bytes] Nguyenduyan (talk | contribs) (Created page with "== Workflow_setGlobal== Set values for scripts invoked from WorkflowScript_class ==Syntax== Workflow_setGlobal(string parameterName, AnyType value) == Return type == Empty == Examples == <source lang="javascript"> Workflow_setGlobal("x", 1000); //Get global value on dynamic script string script = " number a = 1; return a + Workflow_getGlobal(\"x\"); "; WorkflowScript wfS = new WorkflowScript (script, false); wfS.Call();//1001 //Get global value on existing wokfl...")
- 08:39, 3 April 2025 Workflow getGlobal (hist | edit) [670 bytes] Nguyenduyan (talk | contribs) (Created page with "== Workflow_getGlobal== Get values for scripts invoked from WorkflowScript_class ==Syntax== Workflow_getGlobal(string parameterName) == Return type == AnyType == Examples == <source lang="javascript"> Workflow_setGlobal("x", 1000); //Get global value on dynamic script string script = " number a = 1; return a + Workflow_getGlobal(\"x\"); "; WorkflowScript wfS = new WorkflowScript (script, false); wfS.Call();//1001 //Get global value on existing wokflow wfS = new...")
- 08:38, 3 April 2025 DateTime toJson (hist | edit) [734 bytes] Nguyenduyan (talk | contribs) (Created page with "== DateTime_toJson== Convert DateTime_class or DateTime array to string ==Syntax== DateTime_toJson(DateTime[, Type]) == Arguments == DateTime can be DateTime_class or DateTime array Type number: 0 for return full DateTime (default), 1 for return DateOnly, 2 for return TimeOnly == Return type == string of datetime, format yyyy-MM-ddThh:mm:ss.msZ == Examples == <source lang="javascript"> DateTime dateTime = new DateTime(); //array dateTime = getDateTime(); string...")
- 08:37, 3 April 2025 DateTime fromJson (hist | edit) [461 bytes] Nguyenduyan (talk | contribs) (Created page with "== DateTime_fromJson== Convert DateTime string Json to DateTime_class ==Syntax== DateTime_fromJson(string DateTime) == Arguments == DateTime is in string format yyyy-MM-ddThh:mm:ss.msZ == Return type == DateTime_class == Examples == <source lang="javascript"> string dtJson = "2024-12-30T08:22:23.9900000Z"; DateTime dateTime = DateTime_fromJson(dtJson);//2024-12-30 08:22:23 </source> Category:General_Functions")