...

Expand
titleHow to add new language in the end application?

Refer Adding a New Language in your Application - from Canvas 18.1 onwards.


Expand
titleHow to add a custom load mask in the application?

Refer Enabling Custom Load Mask.


Data Rendering or Data Submission

...

Expand
titleHow to configure event wiring for form items?

Refer Form Items Event Wiring.


Expand
titleWhat are the APIs available from CT Platform for forms and form items?

Refer Form and Form Item APIs.


Expand
titleHow to use the performance timer?

Use the following syntax to use the performance timer:

Code Block
languagejava
linenumberstrue
PerformanceTimer performanceTimer = new PerformanceTimer(); performanceTimer.startTimer("MyClassName.myMethodName");
// write your logic here 
performanceTimer.endTimer();



Database

Expand
titleHow to get information from stored procedures or functions with parameters, such as log-in user ID, language, in datasource?

Data can be fetched using Instruction classes (Java class) in Canvas. Canvas uses iBatis library for database access. Callable statements can be used to access Stored Procedures and Functions to get the data.


Login ID, Language etc. will be passed as parameters by Canvas which can be used to filter data accordingly.

...