diff --git a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.aest.controller.getAssessmentAwardDetails.e2e-spec.ts b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.aest.controller.getAssessmentAwardDetails.e2e-spec.ts index 397ff24cab..9ac9576fdc 100644 --- a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.aest.controller.getAssessmentAwardDetails.e2e-spec.ts +++ b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.aest.controller.getAssessmentAwardDetails.e2e-spec.ts @@ -25,7 +25,11 @@ import { OfferingIntensity, Student, } from "@sims/sims-db"; -import { addDays, getDateOnlyFormat } from "@sims/utilities"; +import { + addDays, + getDateOnlyFormat, + getDateOnlyFullMonthFormat, +} from "@sims/utilities"; describe("AssessmentAESTController(e2e)-getAssessmentAwardDetails", () => { let app: INestApplication; @@ -157,7 +161,9 @@ describe("AssessmentAESTController(e2e)-getAssessmentAwardDetails", () => { offeringStudyEndDate: getDateOnlyFormat(offering.studyEndDate), estimatedAward: { // First disbursement schedule dynamic properties. - disbursement1Date: getDateOnlyFormat(firstSchedule.disbursementDate), + disbursement1Date: getDateOnlyFullMonthFormat( + firstSchedule.disbursementDate, + ), disbursement1Status: firstSchedule.disbursementScheduleStatus, disbursement1COEStatus: COEStatus.completed, disbursement1MSFAANumber: sharedMSFAANumber.msfaaNumber, @@ -178,7 +184,9 @@ describe("AssessmentAESTController(e2e)-getAssessmentAwardDetails", () => { disbursement1bgpd: 8, disbursement1sbsd: 9, // Second disbursement schedule dynamic properties. - disbursement2Date: getDateOnlyFormat(secondSchedule.disbursementDate), + disbursement2Date: getDateOnlyFullMonthFormat( + secondSchedule.disbursementDate, + ), disbursement2Status: secondSchedule.disbursementScheduleStatus, disbursement2COEStatus: COEStatus.completed, disbursement2MSFAANumber: sharedMSFAANumber.msfaaNumber, @@ -359,7 +367,9 @@ describe("AssessmentAESTController(e2e)-getAssessmentAwardDetails", () => { offeringStudyEndDate: getDateOnlyFormat(offering.studyEndDate), estimatedAward: { // First disbursement schedule dynamic properties. - disbursement1Date: getDateOnlyFormat(firstSchedule.disbursementDate), + disbursement1Date: getDateOnlyFullMonthFormat( + firstSchedule.disbursementDate, + ), disbursement1Status: firstSchedule.disbursementScheduleStatus, disbursement1COEStatus: COEStatus.completed, disbursement1MSFAANumber: sharedMSFAANumber.msfaaNumber, @@ -377,7 +387,9 @@ describe("AssessmentAESTController(e2e)-getAssessmentAwardDetails", () => { disbursement1bcag: 555, disbursement1sbsd: 666, // Second disbursement schedule dynamic properties. - disbursement2Date: getDateOnlyFormat(secondSchedule.disbursementDate), + disbursement2Date: getDateOnlyFullMonthFormat( + secondSchedule.disbursementDate, + ), disbursement2Status: secondSchedule.disbursementScheduleStatus, disbursement2COEStatus: COEStatus.completed, disbursement2MSFAANumber: sharedMSFAANumber.msfaaNumber, diff --git a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.institutions.controller.getAssessmentAwardDetails.e2e-spec.ts b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.institutions.controller.getAssessmentAwardDetails.e2e-spec.ts index b194239df3..97ae821810 100644 --- a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.institutions.controller.getAssessmentAwardDetails.e2e-spec.ts +++ b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.institutions.controller.getAssessmentAwardDetails.e2e-spec.ts @@ -28,7 +28,7 @@ import { Institution, InstitutionLocation, } from "@sims/sims-db"; -import { getDateOnlyFormat } from "@sims/utilities"; +import { getDateOnlyFormat, getDateOnlyFullMonthFormat } from "@sims/utilities"; import { saveStudentApplicationForCollegeC } from "../../../student/_tests_/e2e/student.institutions.utils"; import { MASKED_MSFAA_NUMBER } from "../../../../../src/services"; @@ -141,7 +141,7 @@ describe("AssessmentInstitutionsController(e2e)-getAssessmentAwardDetails", () = assessment.offering.studyEndDate, ), estimatedAward: { - disbursement1Date: getDateOnlyFormat( + disbursement1Date: getDateOnlyFullMonthFormat( firstDisbursementSchedule.disbursementDate, ), disbursement1Status: diff --git a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.institutions.controller.getAssessmentNOA.e2e-spec.ts b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.institutions.controller.getAssessmentNOA.e2e-spec.ts index 776fc0b8dc..6d3fc85ff1 100644 --- a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.institutions.controller.getAssessmentNOA.e2e-spec.ts +++ b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.institutions.controller.getAssessmentNOA.e2e-spec.ts @@ -26,10 +26,10 @@ import { InstitutionLocation, OfferingIntensity, } from "@sims/sims-db"; -import { getDateOnlyFormat } from "@sims/utilities"; import { MASKED_MSFAA_NUMBER } from "../../../../../src/services"; import { saveStudentApplicationForCollegeC } from "../../../student/_tests_/e2e/student.institutions.utils"; import { getUserFullName } from "../../../../utilities"; +import { getDateOnlyFullMonthFormat } from "@sims/utilities"; describe("AssessmentInstitutionsController(e2e)-getAssessmentNOA", () => { let app: INestApplication; @@ -109,7 +109,7 @@ describe("AssessmentInstitutionsController(e2e)-getAssessmentNOA", () => { assessment: assessment.assessmentData, disbursement: { disbursement1COEStatus: firstDisbursementSchedule.coeStatus, - disbursement1Date: getDateOnlyFormat( + disbursement1Date: getDateOnlyFullMonthFormat( firstDisbursementSchedule.disbursementDate, ), disbursement1Id: firstDisbursementSchedule.id, @@ -125,7 +125,7 @@ describe("AssessmentInstitutionsController(e2e)-getAssessmentNOA", () => { firstDisbursementSchedule.tuitionRemittanceRequestedAmount, ...firstDisbursementScheduleAwards, disbursement2COEStatus: secondDisbursementSchedule.coeStatus, - disbursement2Date: getDateOnlyFormat( + disbursement2Date: getDateOnlyFullMonthFormat( secondDisbursementSchedule.disbursementDate, ), disbursement2Id: secondDisbursementSchedule.id, @@ -147,13 +147,14 @@ describe("AssessmentInstitutionsController(e2e)-getAssessmentNOA", () => { noaApprovalStatus: assessment.noaApprovalStatus, applicationCurrentAssessmentId: application.currentAssessment.id, offeringIntensity: assessment.offering.offeringIntensity, - offeringStudyEndDate: getDateOnlyFormat( + offeringStudyEndDate: getDateOnlyFullMonthFormat( assessment.offering.studyEndDate, ), - offeringStudyStartDate: getDateOnlyFormat( + offeringStudyStartDate: getDateOnlyFullMonthFormat( assessment.offering.studyStartDate, ), programName: assessment.offering.educationProgram.name, + offeringName: assessment.offering.name, }); }); @@ -212,7 +213,7 @@ describe("AssessmentInstitutionsController(e2e)-getAssessmentNOA", () => { assessment: assessment.assessmentData, disbursement: { disbursement1COEStatus: firstDisbursementSchedule.coeStatus, - disbursement1Date: getDateOnlyFormat( + disbursement1Date: getDateOnlyFullMonthFormat( firstDisbursementSchedule.disbursementDate, ), disbursement1Id: firstDisbursementSchedule.id, @@ -228,7 +229,7 @@ describe("AssessmentInstitutionsController(e2e)-getAssessmentNOA", () => { firstDisbursementSchedule.tuitionRemittanceRequestedAmount, ...firstDisbursementScheduleAwards, disbursement2COEStatus: secondDisbursementSchedule.coeStatus, - disbursement2Date: getDateOnlyFormat( + disbursement2Date: getDateOnlyFullMonthFormat( secondDisbursementSchedule.disbursementDate, ), disbursement2Id: secondDisbursementSchedule.id, @@ -250,13 +251,14 @@ describe("AssessmentInstitutionsController(e2e)-getAssessmentNOA", () => { noaApprovalStatus: assessment.noaApprovalStatus, applicationCurrentAssessmentId: application.currentAssessment.id, offeringIntensity: assessment.offering.offeringIntensity, - offeringStudyEndDate: getDateOnlyFormat( + offeringStudyEndDate: getDateOnlyFullMonthFormat( assessment.offering.studyEndDate, ), - offeringStudyStartDate: getDateOnlyFormat( + offeringStudyStartDate: getDateOnlyFullMonthFormat( assessment.offering.studyStartDate, ), programName: assessment.offering.educationProgram.name, + offeringName: assessment.offering.name, }); }); diff --git a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.students.controller.getAssessmentAwardDetails.e2e-spec.ts b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.students.controller.getAssessmentAwardDetails.e2e-spec.ts index ac53cfbb3f..6c89f668a4 100644 --- a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.students.controller.getAssessmentAwardDetails.e2e-spec.ts +++ b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.students.controller.getAssessmentAwardDetails.e2e-spec.ts @@ -26,8 +26,8 @@ import { OfferingIntensity, Student, } from "@sims/sims-db"; -import { getDateOnlyFormat } from "@sims/utilities"; import { BC_TOTAL_GRANT_AWARD_CODE } from "@sims/services/constants"; +import { getDateOnlyFormat, getDateOnlyFullMonthFormat } from "@sims/utilities"; describe("AssessmentStudentsController(e2e)-getAssessmentAwardDetails", () => { let app: INestApplication; @@ -137,7 +137,9 @@ describe("AssessmentStudentsController(e2e)-getAssessmentAwardDetails", () => { offeringStudyStartDate: getDateOnlyFormat(offering.studyStartDate), offeringStudyEndDate: getDateOnlyFormat(offering.studyEndDate), estimatedAward: { - disbursement1Date: getDateOnlyFormat(firstSchedule.disbursementDate), + disbursement1Date: getDateOnlyFullMonthFormat( + firstSchedule.disbursementDate, + ), disbursement1Status: firstSchedule.disbursementScheduleStatus, disbursement1COEStatus: COEStatus.completed, disbursement1MSFAANumber: "XXXXXXXXXX", @@ -297,7 +299,9 @@ describe("AssessmentStudentsController(e2e)-getAssessmentAwardDetails", () => { offeringStudyEndDate: getDateOnlyFormat(offering.studyEndDate), estimatedAward: { // First disbursement schedule dynamic properties. - disbursement1Date: getDateOnlyFormat(firstSchedule.disbursementDate), + disbursement1Date: getDateOnlyFullMonthFormat( + firstSchedule.disbursementDate, + ), disbursement1Status: firstSchedule.disbursementScheduleStatus, disbursement1COEStatus: COEStatus.completed, disbursement1MSFAANumber: "XXXXXXXXXX", @@ -313,7 +317,9 @@ describe("AssessmentStudentsController(e2e)-getAssessmentAwardDetails", () => { disbursement1bcag: 555, disbursement1sbsd: 666, // Second disbursement schedule dynamic properties. - disbursement2Date: getDateOnlyFormat(secondSchedule.disbursementDate), + disbursement2Date: getDateOnlyFullMonthFormat( + secondSchedule.disbursementDate, + ), disbursement2Status: secondSchedule.disbursementScheduleStatus, disbursement2COEStatus: COEStatus.completed, disbursement2MSFAANumber: "XXXXXXXXXX", @@ -393,7 +399,9 @@ describe("AssessmentStudentsController(e2e)-getAssessmentAwardDetails", () => { offeringStudyStartDate: getDateOnlyFormat(offering.studyStartDate), offeringStudyEndDate: getDateOnlyFormat(offering.studyEndDate), estimatedAward: { - disbursement1Date: getDateOnlyFormat(firstSchedule.disbursementDate), + disbursement1Date: getDateOnlyFullMonthFormat( + firstSchedule.disbursementDate, + ), disbursement1Status: firstSchedule.disbursementScheduleStatus, disbursement1COEStatus: COEStatus.completed, disbursement1MSFAANumber: "XXXXXXXXXX", @@ -536,7 +544,9 @@ describe("AssessmentStudentsController(e2e)-getAssessmentAwardDetails", () => { offeringStudyEndDate: getDateOnlyFormat(offering.studyEndDate), estimatedAward: { // First disbursement schedule dynamic properties. - disbursement1Date: getDateOnlyFormat(firstSchedule.disbursementDate), + disbursement1Date: getDateOnlyFullMonthFormat( + firstSchedule.disbursementDate, + ), disbursement1Status: firstSchedule.disbursementScheduleStatus, disbursement1COEStatus: COEStatus.completed, disbursement1MSFAANumber: "XXXXXXXXXX", @@ -555,7 +565,9 @@ describe("AssessmentStudentsController(e2e)-getAssessmentAwardDetails", () => { disbursement1bgpd: 1007, disbursement1sbsd: 1008, // Second disbursement schedule dynamic properties. - disbursement2Date: getDateOnlyFormat(secondSchedule.disbursementDate), + disbursement2Date: getDateOnlyFullMonthFormat( + secondSchedule.disbursementDate, + ), disbursement2Status: secondSchedule.disbursementScheduleStatus, disbursement2COEStatus: COEStatus.completed, disbursement2MSFAANumber: "XXXXXXXXXX", @@ -662,7 +674,9 @@ describe("AssessmentStudentsController(e2e)-getAssessmentAwardDetails", () => { offeringStudyStartDate: getDateOnlyFormat(offering.studyStartDate), offeringStudyEndDate: getDateOnlyFormat(offering.studyEndDate), estimatedAward: { - disbursement1Date: getDateOnlyFormat(firstSchedule.disbursementDate), + disbursement1Date: getDateOnlyFullMonthFormat( + firstSchedule.disbursementDate, + ), disbursement1Status: firstSchedule.disbursementScheduleStatus, disbursement1COEStatus: COEStatus.completed, disbursement1MSFAANumber: "XXXXXXXXXX", diff --git a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.students.controller.getAssessmentNOA.e2e-spec.ts b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.students.controller.getAssessmentNOA.e2e-spec.ts index 350be25e0d..bd1f41b11c 100644 --- a/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.students.controller.getAssessmentNOA.e2e-spec.ts +++ b/sources/packages/backend/apps/api/src/route-controllers/assessment/_tests_/e2e/assessment.students.controller.getAssessmentNOA.e2e-spec.ts @@ -25,7 +25,7 @@ import { } from "@sims/sims-db"; import { TestingModule } from "@nestjs/testing"; import { getUserFullName } from "../../../../utilities"; -import { getDateOnlyFormat } from "@sims/utilities"; +import { getDateOnlyFullMonthFormat } from "@sims/utilities"; describe("AssessmentStudentsController(e2e)-getAssessmentNOA", () => { let app: INestApplication; @@ -120,14 +120,16 @@ describe("AssessmentStudentsController(e2e)-getAssessmentNOA", () => { programName: assessment.offering.educationProgram.name, locationName: assessment.offering.institutionLocation.name, offeringIntensity: OfferingIntensity.partTime, - offeringStudyEndDate: getDateOnlyFormat(assessment.offering.studyEndDate), - offeringStudyStartDate: getDateOnlyFormat( + offeringStudyEndDate: getDateOnlyFullMonthFormat( + assessment.offering.studyEndDate, + ), + offeringStudyStartDate: getDateOnlyFullMonthFormat( assessment.offering.studyStartDate, ), eligibleAmount: 2750, disbursement: { disbursement1COEStatus: newAssessmentDisbursement.coeStatus, - disbursement1Date: getDateOnlyFormat( + disbursement1Date: getDateOnlyFullMonthFormat( newAssessmentDisbursement.disbursementDate, ), disbursement1Id: newAssessmentDisbursement.id, @@ -144,6 +146,7 @@ describe("AssessmentStudentsController(e2e)-getAssessmentNOA", () => { disbursement1cslf: 1250, disbursement1csgp: 1500, }, + offeringName: assessment.offering.name, }; // Act/Assert await request(app.getHttpServer()) diff --git a/sources/packages/backend/apps/api/src/route-controllers/assessment/assessment.controller.service.ts b/sources/packages/backend/apps/api/src/route-controllers/assessment/assessment.controller.service.ts index d1d634c8d3..bd99e413ec 100644 --- a/sources/packages/backend/apps/api/src/route-controllers/assessment/assessment.controller.service.ts +++ b/sources/packages/backend/apps/api/src/route-controllers/assessment/assessment.controller.service.ts @@ -36,7 +36,7 @@ import { DynamicAwardValue, } from "./models/assessment.dto"; import { getUserFullName } from "../../utilities"; -import { getDateOnlyFormat } from "@sims/utilities"; +import { getDateOnlyFormat, getDateOnlyFullMonthFormat } from "@sims/utilities"; import { BC_TOTAL_GRANT_AWARD_CODE } from "@sims/services/constants"; /** @@ -99,11 +99,14 @@ export class AssessmentControllerService { fullName: getUserFullName(assessment.application.student.user), programName: assessment.offering.educationProgram.name, locationName: assessment.offering.institutionLocation.name, + offeringName: assessment.offering.name, offeringIntensity: assessment.offering.offeringIntensity, - offeringStudyStartDate: getDateOnlyFormat( + offeringStudyStartDate: getDateOnlyFullMonthFormat( assessment.offering.studyStartDate, ), - offeringStudyEndDate: getDateOnlyFormat(assessment.offering.studyEndDate), + offeringStudyEndDate: getDateOnlyFullMonthFormat( + assessment.offering.studyEndDate, + ), eligibleAmount: this.sumDisbursementValueAmounts( assessment.disbursementSchedules, ), @@ -139,9 +142,8 @@ export class AssessmentControllerService { const disbursementDetails = {}; disbursementSchedules.forEach((schedule, index) => { const disbursementIdentifier = `disbursement${index + 1}`; - disbursementDetails[`${disbursementIdentifier}Date`] = getDateOnlyFormat( - schedule.disbursementDate, - ); + disbursementDetails[`${disbursementIdentifier}Date`] = + getDateOnlyFullMonthFormat(schedule.disbursementDate); disbursementDetails[`${disbursementIdentifier}Status`] = schedule.disbursementScheduleStatus; disbursementDetails[`${disbursementIdentifier}COEStatus`] = diff --git a/sources/packages/backend/apps/api/src/route-controllers/assessment/models/assessment.dto.ts b/sources/packages/backend/apps/api/src/route-controllers/assessment/models/assessment.dto.ts index 312d42172b..4faf848aca 100644 --- a/sources/packages/backend/apps/api/src/route-controllers/assessment/models/assessment.dto.ts +++ b/sources/packages/backend/apps/api/src/route-controllers/assessment/models/assessment.dto.ts @@ -92,6 +92,7 @@ export class AssessmentNOAAPIOutDTO { disbursement: DynamicAwardValue; noaApprovalStatus: AssessmentStatus; applicationStatus: ApplicationStatus; + offeringName: string; } export class AwardDetailsAPIOutDTO { diff --git a/sources/packages/backend/apps/api/src/services/student-assessment/student-assessment.service.ts b/sources/packages/backend/apps/api/src/services/student-assessment/student-assessment.service.ts index f6180259ba..9c5ad43d30 100644 --- a/sources/packages/backend/apps/api/src/services/student-assessment/student-assessment.service.ts +++ b/sources/packages/backend/apps/api/src/services/student-assessment/student-assessment.service.ts @@ -72,6 +72,7 @@ export class StudentAssessmentService extends RecordDataModelServiceStudent name:{{ data.fullName }} | Application #: {{ data.applicationNumber }}", + "content": "Name: {{ data.fullName }} | Application Number: {{ data.applicationNumber }} | Study Dates: {{ data.offeringStudyStartDate}} - {{ data.offeringStudyEndDate}}", "refreshOnChange": true, "customClass": "", "hidden": false, @@ -489,7 +489,7 @@ "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -627,170 +627,6 @@ "tree": false, "lazyLoad": false, "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your eligible award", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html51", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eq8ngf" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Please accept your assessment above to move your application forward. You may also cancel your application to stop your application from going forward.", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html103", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "show = (data.noaApprovalStatus === \"Required\")\n&& (data.applicationStatus === \"Assessment\")\n&& (!data.viewOnly)", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ev697pk" - }, { "title": "Panel", "labelWidth": "", @@ -809,7 +645,7 @@ "customConditional": "", "conditional": { "json": "", - "show": null, + "show": "", "when": null, "eq": "" }, @@ -868,6 +704,88 @@ "tree": false, "lazyLoad": false, "components": [ + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "h3", + "className": "category-header-medium primary-color", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "You are eligible to receive: ${{ (data.eligibleAmount)?.toLocaleString('en-CA', { minimumFractionDigits: 2 }) }}", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html51", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eq8ngf", + "hideLabel": true + }, { "label": "Columns", "labelWidth": "", @@ -887,16 +805,16 @@ "value": "" } ], - "content": "Eligible for the amount", + "content": "Program", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "html104", + "key": "html106", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -931,7 +849,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -955,30 +872,31 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "ega6en8" + "id": "ewmwrbl", + "hideLabel": true }, { "label": "HTML", "labelWidth": "", "labelMargin": "", - "tag": "span", - "className": "category-header-medium primary-color pt-2", + "tag": "p", + "className": "label-value mt-2", "attrs": [ { "attr": "", "value": "" } ], - "content": "${{ data.eligibleAmount }}", + "content": "{{ data.programName }}", "refreshOnChange": true, "customClass": "", "hidden": false, "modalEdit": false, - "key": "html112", + "key": "html107", "tags": [], "properties": {}, "conditional": { - "show": "", + "show": null, "when": null, "eq": "", "json": "" @@ -1013,7 +931,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -1037,10 +954,11 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "el054jb" + "id": "ejyeiku", + "hideLabel": true } ], - "width": 3, + "width": 6, "offset": 0, "push": 0, "pull": 0, @@ -1051,8 +969,6 @@ "components": [ { "label": "HTML", - "labelWidth": "", - "labelMargin": "", "tag": "span", "className": "label-bold", "attrs": [ @@ -1061,51 +977,31 @@ "value": "" } ], - "content": "For the program", + "content": "Offering", "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html106", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, + "key": "html110", "type": "htmlelement", "input": false, "tableView": false, "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, + "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", + "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -1114,6 +1010,7 @@ "calculateValue": "", "calculateServer": false, "widget": null, + "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -1123,19 +1020,35 @@ "multiple": false, "unique": false }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "ewmwrbl" + "id": "ed7zhif", + "hideLabel": true, + "tags": [], + "isNew": false }, { "label": "HTML", "labelWidth": "", "labelMargin": "", - "tag": "p", + "tag": "span", "className": "label-value mt-2", "attrs": [ { @@ -1143,16 +1056,16 @@ "value": "" } ], - "content": "{{ data.programName }}", + "content": "{{ data.offeringName }}", "refreshOnChange": true, "customClass": "", "hidden": false, "modalEdit": false, - "key": "html107", + "key": "html105", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -1187,7 +1100,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -1211,16 +1123,94 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "ejyeiku" + "id": "ehczdbf", + "hideLabel": true } ], - "width": 3, + "width": 6, "offset": 0, "push": 0, "pull": 0, "size": "md", "currentWidth": 3 - }, + } + ], + "autoAdjust": false, + "customClass": "mt-7", + "hidden": false, + "modalEdit": false, + "key": "columns1", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e9hoqyw", + "hideLabel": true + }, + { + "label": "Columns", + "labelWidth": "", + "labelMargin": "", + "columns": [ { "components": [ { @@ -1235,7 +1225,7 @@ "value": "" } ], - "content": "At the institution ", + "content": "Institution location", "refreshOnChange": false, "customClass": "", "hidden": false, @@ -1244,7 +1234,7 @@ "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -1279,7 +1269,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -1303,7 +1292,8 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "expc35o" + "id": "expc35o", + "hideLabel": true }, { "label": "HTML", @@ -1361,7 +1351,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -1385,93 +1374,17 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "eupvxgi" + "id": "eupvxgi", + "hideLabel": true } ], - "size": "md", - "width": 3, + "width": 6, "offset": 0, "push": 0, "pull": 0, + "size": "md", "currentWidth": 3 - } - ], - "autoAdjust": false, - "customClass": "", - "hidden": false, - "hideLabel": false, - "modalEdit": false, - "key": "columns", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "columns", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ebzunhp" - }, - { - "label": "Columns", - "labelWidth": "", - "labelMargin": "", - "columns": [ + }, { "components": [ { @@ -1484,9 +1397,9 @@ "value": "" } ], - "content": "Type", + "content": "Intensity", "refreshOnChange": false, - "key": "html110", + "key": "html112", "type": "htmlelement", "input": false, "tableView": false, @@ -1509,7 +1422,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -1529,7 +1441,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -1547,7 +1459,9 @@ "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "ed7zhif" + "id": "ed7zhif", + "tags": [], + "hideLabel": true }, { "label": "HTML", @@ -1561,16 +1475,16 @@ "value": "" } ], - "content": "{{ data.offeringIntensity }}", + "content": "{{ data.offeringIntensity === 'Full Time' ? 'Full-time' : 'Part-time' }}", "refreshOnChange": true, "customClass": "", "hidden": false, "modalEdit": false, - "key": "html105", + "key": "html113", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -1605,7 +1519,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -1629,421 +1542,111 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "ehczdbf" + "id": "ehczdbf", + "hideLabel": true } ], - "width": 3, + "width": 6, "offset": 0, "push": 0, "pull": 0, "size": "md", "currentWidth": 3 - }, - { - "components": [ - { - "label": "HTML", - "tag": "span", - "className": "label-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Study start date", - "refreshOnChange": false, - "key": "html113", - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eqyb4ma" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "span", - "className": "label-value mt-2", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{ data.offeringStudyStartDate }}", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html116", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ez286lu" - } - ], - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3 - }, + } + ], + "autoAdjust": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "columns", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "columns", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ebzunhp", + "hideLabel": true + }, + { + "key": "panelContent", + "label": "Content", + "input": false, + "tag": "p", + "attrs": [ { - "components": [ - { - "label": "HTML", - "tag": "span", - "className": "label-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Study end date", - "refreshOnChange": false, - "key": "html117", - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eb3t0ps" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "span", - "className": "label-value mt-2", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{ data.offeringStudyEndDate }}", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html118", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e0z115" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 + "value": "", + "attr": "" } ], - "autoAdjust": false, - "customClass": "mt-7", - "hidden": false, - "hideLabel": false, - "modalEdit": false, - "key": "columns1", + "className": "", + "content": "Please note the funding you receive may differ from the eligible amount. The funding may be adjusted once confirmation of your outstanding principal balance of Part-time Canada Student loans and grants is received, or if any restrictions are added to your account after your initial assessment.", + "type": "htmlelement", + "hideLabel": true, "tags": [], - "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false + "eq": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e9hoqyw" + "properties": {} } ], "id": "el5vx0r" @@ -2052,27 +1655,27 @@ "id": "efdpcap" }, { - "label": "Your Assessment", + "label": "Funding", "labelWidth": "", "labelMargin": "", "tag": "h2", - "className": "category-header-large primary-color pt-3", + "className": "category-header-large primary-color", "attrs": [ { "attr": "", "value": "" } ], - "content": "Next steps", + "content": "Funding", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "noticeOfAssessment2", + "key": "noticeOfAssessment3", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -2107,7 +1710,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -2131,35 +1733,30 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "e4f7vxq" + "id": "e3bmfo", + "hideLabel": true }, { - "label": "html", + "title": "Panel", "labelWidth": "", "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "The National Student Loans Service Centre (NSLSC) will email you instructions for creating an online account. Once you’ve received the instructions, follow the steps below.", - "refreshOnChange": false, - "customClass": "", + "theme": "default", + "tooltip": "", + "customClass": " pt-3", + "collapsible": false, "hidden": false, + "disabled": false, "modalEdit": false, - "key": "whatYouMustDo", + "key": "panel4", "tags": [], "properties": {}, + "customConditional": "", "conditional": { - "show": null, + "json": "", + "show": "", "when": null, - "eq": "", - "json": "" + "eq": "" }, - "customConditional": "", "logic": [], "attributes": {}, "overlay": { @@ -2170,92 +1767,17 @@ "width": "", "height": "" }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ekgvtwh" - }, - { - "title": "If it’s your first loan Panel", - "labelWidth": "", - "labelMargin": "", - "theme": "default", - "tooltip": "", - "customClass": " pt-3", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", "input": false, "tableView": false, "components": [ { "label": "HTML", + "labelWidth": "", + "labelMargin": "", "tag": "h3", "className": "category-header-medium primary-color", "attrs": [ @@ -2264,26 +1786,45 @@ "value": "" } ], - "content": "If it’s your first loan", + "content": "How was your funding calculated?", "refreshOnChange": false, - "key": "html52", + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html133", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "htmlelement", "input": false, "tableView": false, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -2298,7 +1839,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -2308,55 +1848,147 @@ "multiple": false, "unique": false }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eg8rc0l" + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your application was subject to federal and provincial assessment calculations based on Canada Student Financial Assistance Program and StudentAid BC policies. Your assessment is based on total family income as reflected in the previous year’s tax return (including spouse/common-law partner, if applicable), or as reported on your application if no tax return was available.", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html134", + "tags": [], + "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "ezdlvfd" + "id": "ecn87l8" }, { "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", "attrs": [ { "attr": "", "value": "" } ], - "content": "Once you’ve submitted your 10-digit MSFAA (Master Student Financial Assistance Agreement) and your school has confirmed your enrolment, your money will be deposited on NSLSC.", - "refreshOnChange": false, - "key": "html53", + "content": "Total income used for assessment purposes: ${{ (data.assessment?.totalFamilyIncome)?.toLocaleString('en-CA', { minimumFractionDigits: 2 }) }}", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html7", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "htmlelement", "input": false, "tableView": false, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -2371,7 +2003,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -2381,4476 +2012,1336 @@ "multiple": false, "unique": false }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eg4u9tj" + }, + { + "title": "Assessment breakdown", + "labelWidth": "", + "labelMargin": "", + "theme": "default", + "tooltip": "", + "customClass": "collapsible", + "collapsible": true, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "yourAssessmentBreakdown", + "tags": [], + "properties": {}, + "customConditional": "", "conditional": { - "show": "", + "json": "", + "show": null, "when": null, "eq": "" }, + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "id": "ejy6te", - "className": "", - "tags": [] - }, - { - "clearOnHide": false, - "label": "Columns", + "type": "panel", + "label": "Your assessment breakdown", + "breadcrumb": "default", + "tabindex": "", "input": false, "tableView": false, - "key": "panel1Columns", - "columns": [ + "collapsed": true, + "components": [ { + "title": "Full time Panel", + "labelWidth": "", + "labelMargin": "", + "theme": "default", + "tooltip": "", + "customClass": "formio-panel-unset", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel5", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "offeringIntensity", + "eq": "Full Time" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, "components": [ { - "clearOnHide": false, - "key": "panel1ColumnsPanelPanel", + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "h3", + "className": "category-header-medium primary-color", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Assessed costs", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html48", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", "input": false, - "title": "MSFAA Disbursement 1", - "theme": "default", "tableView": false, - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "font-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your MSFAA number:", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html135", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement1MSFAAStatus", - "eq": "signed", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "edn6y4" + }, + { + "label": "Table", + "numRows": 9, + "numCols": 3, + "cloneRows": false, + "cellAlignment": "left", + "labelWidth": "", + "labelMargin": "", + "customClass": "formio-bordered formio-table-last-col-background extra-small pb-5", + "striped": false, + "bordered": false, + "hover": true, + "condensed": true, + "hidden": false, + "hideLabel": false, + "modalEdit": false, + "key": "table2", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "table", + "input": false, + "tableView": false, + "rows": [ + [ + { + "components": [ + { + "label": "Assessed costs", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Assessed costs", + "refreshOnChange": false, + "key": "assessedCosts", + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "id": "el2jv0c000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "font-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your new MSFAA number:", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html141", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement1MSFAAStatus", - "eq": "pending", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "font-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your cancelled MSFAA number:", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html142", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement1MSFAAStatus", - "eq": "cancelled", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" + { + "components": [ + { + "label": "Federal", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Federal", + "refreshOnChange": false, + "key": "federal", + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "id": "ecevtxe000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{ data.disbursement.disbursement1MSFAANumber}}\n", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html121", - "tags": [], - "properties": {}, - "conditional": { - "show": "", - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false + { + "components": [ + { + "label": "Provincial", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Provincial", + "refreshOnChange": false, + "key": "provincial", + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "id": "efago7k000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + } + ], + [ + { + "components": [ + { + "label": "Tuition and fees", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Tuition and fees", + "refreshOnChange": false, + "key": "tuitionAndFees", + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "id": "en8r6n111111111111111111111111111111111111111111111", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Please submit your new MSFAA number on NSLSC to receive your money.", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html140", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement1MSFAAStatus", - "eq": "pending", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "This number was cancelled on {{ data.disbursement.disbursement1MSFAACancelledDateFormatted}}.", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html136", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement1MSFAAStatus", - "eq": "cancelled", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{typeof data.assessment?.tuitionCost === 'number' ? '$' + (data.assessment.tuitionCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html24", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ee8fhp111111111111111111111111111111111111111111111", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - } - ], - "type": "panel", - "breadcrumb": "default", - "tags": [], - "conditional": { - "show": "", - "when": null, - "eq": "" - }, - "properties": {}, - "hideLabel": true, - "customClass": "formio-panel-unset" - }, - { - "autofocus": false, - "input": true, - "label": "Reissue MSFAA number", - "tableView": false, - "key": "panel1ColumnsReissueMsfaAnumber", - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "action": "custom", - "disableOnInvalid": false, - "theme": "primary", - "type": "button", - "tags": [], - "conditional": { - "show": "true", - "when": "canReissueMSFAA", - "eq": "true" - }, - "properties": {}, - "event": "reissueMSFAA", - "custom": "form.emit('customEvent', { type: \"reissueMSFAA\" });" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0 - }, - { - "components": [ - { - "clearOnHide": false, - "key": "panel1ColumnsPanelPanel2", - "input": false, - "title": "MSFAA Disbursement 2", - "theme": "default", - "tableView": false, - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "font-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your MSFAA number:", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html143", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement2MSFAAStatus", - "eq": "signed", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{typeof data.assessment?.tuitionCost === 'number' ? '$' + (data.assessment.tuitionCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html23", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "eekncf2111111111111111111111111111111111111111111111", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "Books and supplies", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Books and supplies", + "refreshOnChange": false, + "key": "booksAndSupplies", + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "id": "e9o9lj222222222222222222222222222222222222222222222", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "font-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your new MSFAA number:", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html144", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement2MSFAAStatus", - "eq": "pending", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "font-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your cancelled MSFAA number:", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html145", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement2MSFAAStatus", - "eq": "cancelled", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{typeof data.assessment?.booksAndSuppliesCost === 'number' ? '$' + (data.assessment.booksAndSuppliesCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html18", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "elgvrz222222222222222222222222222222222222222222222", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{ data.disbursement.disbursement2MSFAANumber}}\n", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html137", - "tags": [], - "properties": {}, - "conditional": { - "show": "", - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{typeof data.assessment?.booksAndSuppliesCost === 'number' ? '$' + (data.assessment.booksAndSuppliesCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html22", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "et0kbb3j222222222222222222222222222222222222222222222", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Exceptional education costs", + "refreshOnChange": false, + "key": "html14", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ea5jeit333333333333333333333333333333333333333333333", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Please submit your new MSFAA number on NSLSC to receive your money.", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html138", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement2MSFAAStatus", - "eq": "pending", - "json": "" + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{typeof data.assessment?.exceptionalEducationCost === 'number' ? '$' + (data.assessment.exceptionalEducationCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html19", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "eoevkps333333333333333333333333333333333333333333333", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{typeof data.assessment?.exceptionalEducationCost === 'number' ? '$' + (data.assessment.exceptionalEducationCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html27", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "exgc795333333333333333333333333333333333333333333333", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "Living allowance", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Living allowance", + "refreshOnChange": false, + "key": "livingAllowance", + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "id": "eqq6z0a444444444444444444444444444444444444444444444", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "This number was cancelled on {{ data.disbursement.disbursement2MSFAACancelledDateFormatted}}.", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html139", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "disbursement2MSFAAStatus", - "eq": "cancelled", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehqv5z", - "hideLabel": true - } - ], - "type": "panel", - "breadcrumb": "default", - "tags": [], - "conditional": { - "show": "", - "when": null, - "eq": "" - }, - "properties": {}, - "hideLabel": true, - "customClass": "formio-panel-unset", - "customConditional": "show = data.disbursement.disbursement1MSFAAId !== data.disbursement.disbursement2MSFAAId && !!data.disbursement.disbursement2MSFAAId" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0 - } - ], - "type": "columns", - "hideLabel": true, - "tags": [], - "conditional": { - "show": "", - "when": null, - "eq": "" - }, - "properties": {} - }, - { - "customClass": "formio-panel-bg-secondary", - "collapsible": false, - "hideLabel": true, - "key": "panel2", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "ol", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "
  • \n \n Create your account\n \n
  • \n
  • \n Complete your Master Student Financial Assistance Agreement (MSFAA)\n
  • \n
  • \n Submit your MSFAA\n
  • ", - "refreshOnChange": false, - "customClass": "align-bullets", - "hidden": false, - "modalEdit": false, - "key": "html54", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "egjyiju" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default", - "id": "e0hx2pp" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ec2nq79" - }, - { - "title": "If you’ve already had a loan Panel", - "labelWidth": "", - "labelMargin": "", - "theme": "default", - "tooltip": "", - "customClass": " pt-3", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "ifYouveAlreadyHadALoanPanel", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "HTML", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "If you’ve already had a loan", - "refreshOnChange": false, - "key": "html55", - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ewnulsi" - }, - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "If you’ve had a loan in the last 2 years from StudentAid BC, or have a valid MSFAA on file, you do not need to submit an MSFAA.", - "refreshOnChange": false, - "key": "html122", - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "id": "eublpd", - "className": "" - }, - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "You should check you banking information by logging into your \n\n \n
    National Student Loans Service Centre\n \n account. If it’s not up to date, you may not receive your loan.", - "refreshOnChange": false, - "key": "html123", - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "id": "es8ibw", - "className": "" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e6sjrvk" - }, - { - "label": "Your Assessment", - "labelWidth": "", - "labelMargin": "", - "tag": "h2", - "className": "category-header-large primary-color pt-3", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your funding", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "noticeOfAssessment1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eb3refk" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "If you are not receiving funding, but are still attending school—you may apply for interest-free status.", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html124", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e4pyvop" - }, - { - "title": "When your funds will be received Panel", - "labelWidth": "", - "labelMargin": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "whenYourFundsWillBeReceivedPanel", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "When your funds will be received", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html125", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "enco4e4" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Funds will be received on or after the following dates.", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html126", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e7loo5" - }, - { - "customClass": "formio-panel-bg-secondary", - "collapsible": false, - "hideLabel": true, - "key": "panel3", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "labelWidth": "", - "labelMargin": "", - "columns": [ - { - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "label-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Date 1: ", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html127", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eem6nbn" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement1Date ? data.disbursement.disbursement1Date : '-'}}", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html129", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e7slxf2" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "The earliest date you will receive funding.", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html131", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e5z0fjl" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "label-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Date 2: (If applicable)", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html128", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "esazl89" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement2Date ? data.disbursement.disbursement2Date : '-'}}", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html130", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e76phfc" - }, - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "The earliest date you will receive funding.", - "refreshOnChange": false, - "key": "html132", - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "id": "egxl4v", - "className": "" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "autoAdjust": false, - "customClass": "", - "hidden": false, - "hideLabel": false, - "modalEdit": false, - "key": "columns2", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "columns", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ehnta4n" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default", - "id": "ezqs0ll" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "euwvw77" - }, - { - "title": "Panel", - "labelWidth": "", - "labelMargin": "", - "theme": "default", - "tooltip": "", - "customClass": " pt-3", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel4", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "How your amount was calculated", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html133", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eg8rc0l" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Your application was subject to federal and provincial financial assessment calculations, based on Canada Student Financial Assistance Program and StudentAid BC’s policies.", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html134", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ecn87l8" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "label-bold", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "This includes:", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html194", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "esiiwy8" - }, - { - "label": "This includes for full time", - "labelWidth": "", - "labelMargin": "", - "tag": "ul", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "
  • \n Income of your partner and/or parent(s), if applicable\n
  • \n
  • \n Scholarships and bursaries reported\n
  • \n
  • \n Voluntary or targeted contributions reported\n
  • \n
  • \n Assets reported by parents, if applicable\n
  • ", - "refreshOnChange": false, - "customClass": "align-bullets", - "hidden": false, - "modalEdit": false, - "key": "html", - "tags": [], - "properties": {}, - "conditional": { - "show": "true", - "when": "offeringIntensity", - "eq": "Full Time", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "egy4x9" - }, - { - "key": "panel4Thisincludesforparttime", - "label": "This includes for part time", - "input": false, - "tag": "ul", - "attrs": [ - { - "value": "", - "attr": "" - } - ], - "className": "", - "content": "
  • \n Income of your partner and/or parent(s), if applicable\n
  • \n
  • \n Assets reported by parents, if applicable\n
  • ", - "type": "htmlelement", - "hideLabel": true, - "tags": [], - "conditional": { - "show": "true", - "when": "offeringIntensity", - "eq": "Part Time" - }, - "properties": {}, - "customClass": "align-bullets" - }, - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Total family income on the previous year’s returns: ${{ (data.assessment?.totalFamilyIncome)?.toFixed(2) }}", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html7", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eg4u9tj" - }, - { - "title": "Assessment breakdown", - "labelWidth": "", - "labelMargin": "", - "theme": "default", - "tooltip": "", - "customClass": "collapsible", - "collapsible": true, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "yourAssessmentBreakdown", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Your assessment breakdown", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "collapsed": true, - "components": [ - { - "title": "Full time Panel", - "labelWidth": "", - "labelMargin": "", - "theme": "default", - "tooltip": "", - "customClass": "formio-panel-unset", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel5", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "offeringIntensity", - "eq": "Full Time" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "h3", - "className": "category-header-medium primary-color", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Assessed costs", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html48", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "edn6y4", - "isNew": false - }, - { - "label": "Table", - "numRows": 9, - "numCols": 3, - "cloneRows": false, - "cellAlignment": "left", - "labelWidth": "", - "labelMargin": "", - "customClass": "formio-bordered formio-table-last-col-background extra-small pb-5", - "striped": false, - "bordered": false, - "hover": true, - "condensed": true, - "hidden": false, - "hideLabel": false, - "modalEdit": false, - "key": "table2", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "table", - "input": false, - "tableView": false, - "rows": [ - [ - { - "components": [ - { - "label": "Assessed costs", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Assessed costs", - "refreshOnChange": false, - "key": "assessedCosts", - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "id": "el2jv0c000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "Federal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Federal", - "refreshOnChange": false, - "key": "federal", - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "id": "ecevtxe000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "Provincial", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Provincial", - "refreshOnChange": false, - "key": "provincial", - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "id": "efago7k000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "", - "isNew": false, - "tags": [] - } - ] - } - ], - [ - { - "components": [ - { - "label": "Tuition and fees", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Tuition and fees", - "refreshOnChange": false, - "key": "tuitionAndFees", - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "id": "en8r6n111111111111111111111111111111111111111111111", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{typeof data.assessment?.tuitionCost === 'number' ? '$' + (data.assessment.tuitionCost).toFixed(2) : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html24", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "ee8fhp111111111111111111111111111111111111111111111", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{typeof data.assessment?.tuitionCost === 'number' ? '$' + (data.assessment.tuitionCost).toFixed(2) : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html23", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "eekncf2111111111111111111111111111111111111111111111", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ], - [ - { - "components": [ - { - "label": "Books and supplies", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Books and supplies", - "refreshOnChange": false, - "key": "booksAndSupplies", - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "id": "e9o9lj222222222222222222222222222222222222222222222", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{typeof data.assessment?.booksAndSuppliesCost === 'number' ? '$' + (data.assessment.booksAndSuppliesCost).toFixed(2) : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html18", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "elgvrz222222222222222222222222222222222222222222222", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{typeof data.assessment?.booksAndSuppliesCost === 'number' ? '$' + (data.assessment.booksAndSuppliesCost).toFixed(2) : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html22", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "et0kbb3j222222222222222222222222222222222222222222222", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ], - [ - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Exceptional education costs", - "refreshOnChange": false, - "key": "html14", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "ea5jeit333333333333333333333333333333333333333333333", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{typeof data.assessment?.exceptionalEducationCost === 'number' ? '$' + (data.assessment.exceptionalEducationCost).toFixed(2) : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html19", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "eoevkps333333333333333333333333333333333333333333333", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{typeof data.assessment?.exceptionalEducationCost === 'number' ? '$' + (data.assessment.exceptionalEducationCost).toFixed(2) : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html27", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "exgc795333333333333333333333333333333333333333333333", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ], - [ - { - "components": [ - { - "label": "Living allowance", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Living allowance", - "refreshOnChange": false, - "key": "livingAllowance", - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "id": "eqq6z0a444444444444444444444444444444444444444444444", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{typeof data.assessment?.livingAllowance === 'number' ? '$' + (data.assessment.livingAllowance).toFixed(2) : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html20", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "e7gbbdj444444444444444444444444444444444444444444444", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{typeof data.assessment?.livingAllowance === 'number' ? '$' + (data.assessment.livingAllowance).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html20", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "e7gbbdj444444444444444444444444444444444444444444444", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] }, { "components": [ @@ -6862,7 +3353,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.livingAllowance === 'number' ? '$' + (data.assessment.livingAllowance).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.livingAllowance === 'number' ? '$' + (data.assessment.livingAllowance).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html29", "type": "htmlelement", @@ -7022,7 +3513,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.transportationCost === 'number' ? '$' + (data.assessment.transportationCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.transportationCost === 'number' ? '$' + (data.assessment.transportationCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html25", "type": "htmlelement", @@ -7101,7 +3592,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.transportationCost === 'number' ? '$' + (data.assessment.transportationCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.transportationCost === 'number' ? '$' + (data.assessment.transportationCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html21", "type": "htmlelement", @@ -7261,7 +3752,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.childcareCost === 'number' ? '$' + (data.assessment.childcareCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.childcareCost === 'number' ? '$' + (data.assessment.childcareCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html26", "type": "htmlelement", @@ -7340,7 +3831,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.childcareCost === 'number' ? '$' + (data.assessment.childcareCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.childcareCost === 'number' ? '$' + (data.assessment.childcareCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html30", "type": "htmlelement", @@ -7500,7 +3991,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.otherAllowableCost === 'number' ? '$' + (data.assessment.otherAllowableCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.otherAllowableCost === 'number' ? '$' + (data.assessment.otherAllowableCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html28", "type": "htmlelement", @@ -7579,7 +4070,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.otherAllowableCost === 'number' ? '$' + (data.assessment.otherAllowableCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.otherAllowableCost === 'number' ? '$' + (data.assessment.otherAllowableCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html31", "type": "htmlelement", @@ -7740,7 +4231,7 @@ "value": "" } ], - "content": "\n{{typeof data.assessment?.totalAssessedCost === 'number' ? '$' + (data.assessment.totalAssessedCost).toFixed(2) : '(Not eligible)'}}\n", + "content": "\n{{typeof data.assessment?.totalAssessedCost === 'number' ? '$' + (data.assessment.totalAssessedCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}\n", "refreshOnChange": true, "key": "html32", "type": "htmlelement", @@ -7819,7 +4310,7 @@ "value": "" } ], - "content": "\n{{typeof data.assessment?.totalAssessedCost === 'number' ? '$' + (data.assessment.totalAssessedCost).toFixed(2) : '(Not eligible)'}}\n", + "content": "\n{{typeof data.assessment?.totalAssessedCost === 'number' ? '$' + (data.assessment.totalAssessedCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}\n", "refreshOnChange": true, "key": "html33", "type": "htmlelement", @@ -7933,8 +4424,7 @@ "lazyLoad": false, "header": [], "caption": "", - "id": "e830oao", - "isNew": false + "id": "e830oao" }, { "label": "HTML", @@ -8412,7 +4902,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.studentTotalFederalContribution === 'number' ? '$' + (data.assessment.studentTotalFederalContribution).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.studentTotalFederalContribution === 'number' ? '$' + (data.assessment.studentTotalFederalContribution).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html184", "type": "htmlelement", @@ -8492,7 +4982,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.studentTotalProvincialContribution === 'number' ? '$' + (data.assessment.studentTotalProvincialContribution).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.studentTotalProvincialContribution === 'number' ? '$' + (data.assessment.studentTotalProvincialContribution).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html185", "type": "htmlelement", @@ -8654,7 +5144,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.partnerAssessedContribution === 'number' ? '$' + (data.assessment.partnerAssessedContribution).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.partnerAssessedContribution === 'number' ? '$' + (data.assessment.partnerAssessedContribution).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html186", "type": "htmlelement", @@ -8733,7 +5223,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.partnerAssessedContribution === 'number' ? '$' + (data.assessment.partnerAssessedContribution).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.partnerAssessedContribution === 'number' ? '$' + (data.assessment.partnerAssessedContribution).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html187", "type": "htmlelement", @@ -8895,7 +5385,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.parentAssessedContribution === 'number' ? '$' + (data.assessment.parentAssessedContribution).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.parentAssessedContribution === 'number' ? '$' + (data.assessment.parentAssessedContribution).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html188", "type": "htmlelement", @@ -8974,7 +5464,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.parentAssessedContribution === 'number' ? '$' + (data.assessment.parentAssessedContribution).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.parentAssessedContribution === 'number' ? '$' + (data.assessment.parentAssessedContribution).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html189", "type": "htmlelement", @@ -9146,7 +5636,7 @@ "value": "" } ], - "content": "\n{{typeof data.assessment?.totalFederalContribution === 'number' ? '$' + (data.assessment.totalFederalContribution).toFixed(2) : '(Not eligible)'}}\n", + "content": "\n{{typeof data.assessment?.totalFederalContribution === 'number' ? '$' + (data.assessment.totalFederalContribution).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}\n", "refreshOnChange": true, "customClass": "", "hidden": false, @@ -9232,7 +5722,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.totalProvincialContribution === 'number' ? '$' + (data.assessment.totalProvincialContribution).toFixed(2) : '(Not eligible)'}}\n", + "content": "{{typeof data.assessment?.totalProvincialContribution === 'number' ? '$' + (data.assessment.totalProvincialContribution).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}\n", "refreshOnChange": true, "customClass": "", "hidden": false, @@ -9576,7 +6066,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.federalAssessmentNeed === 'number' ? '$' + (data.assessment.federalAssessmentNeed).toFixed(2) : '(Not eligible)'}}\n", + "content": "{{typeof data.assessment?.federalAssessmentNeed === 'number' ? '$' + (data.assessment.federalAssessmentNeed).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}\n", "refreshOnChange": true, "customClass": "", "hidden": false, @@ -9662,7 +6152,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.provincialAssessmentNeed === 'number' ? '$' + (data.assessment.provincialAssessmentNeed).toFixed(2) : '(Not eligible)'}}\n", + "content": "{{typeof data.assessment?.provincialAssessmentNeed === 'number' ? '$' + (data.assessment.provincialAssessmentNeed).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}\n", "refreshOnChange": true, "customClass": "", "hidden": false, @@ -9941,8 +6431,7 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "erb6d17", - "isNew": false + "id": "erb6d17" }, { "label": "Table", @@ -9988,120 +6477,61 @@ { "components": [ { - "label": "Tuition and fees", + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", "attrs": [ { "attr": "", "value": "" } ], - "content": "Tuition and fees", + "content": "Assessed costs", "refreshOnChange": false, - "key": "tuitionAndFees1", - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "id": "eaf2b7w00000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, + "key": "html103", + "tags": [], + "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{typeof data.assessment?.tuitionCost === 'number' ? '$' + (data.assessment.tuitionCost).toFixed(2) : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "tutionCost", "type": "htmlelement", "input": false, "tableView": false, - "id": "e1hfsrb00000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -10110,7 +6540,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -10120,50 +6549,40 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "tag": "p", - "className": "" + "id": "erb6d17", + "hideLabel": true } ] + }, + { + "components": [] } ], [ { "components": [ { - "label": "Books and supplies", + "label": "Tuition and fees", "attrs": [ { "attr": "", "value": "" } ], - "content": "Books and supplies", + "content": "Tuition and fees", "refreshOnChange": false, - "key": "booksAndSupplies1", + "key": "tuitionAndFees1", "type": "htmlelement", "input": false, "tableView": false, "hideOnChildrenHidden": false, - "id": "ebykk3d11111111111111111111111111111111111111111111", + "id": "eaf2b7w00000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -10222,9 +6641,7 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "", - "isNew": false, - "tags": [] + "className": "" } ] }, @@ -10238,13 +6655,13 @@ "value": "" } ], - "content": "{{typeof data.assessment?.booksAndSuppliesCost === 'number' ? '$' + (data.assessment.booksAndSuppliesCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.tuitionCost === 'number' ? '$' + (data.assessment.tuitionCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "booksCost", + "key": "tutionCost", "type": "htmlelement", "input": false, "tableView": false, - "id": "e64h2611111111111111111111111111111111111111111111", + "id": "e1hfsrb00000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -10304,7 +6721,6 @@ "addons": [], "tag": "p", "className": "", - "isNew": false, "tags": [] } ] @@ -10314,77 +6730,21 @@ { "components": [ { - "key": "table3Content", - "label": "Content", - "input": false, - "tag": "p", - "attrs": [ - { - "value": "", - "attr": "" - } - ], - "className": "", - "content": "Mandatory Fees", - "type": "htmlelement", - "tags": [], - "conditional": { - "show": "", - "when": null, - "eq": "" - }, - "properties": {}, - "hideLabel": true - } - ] - }, - { - "components": [ - { - "key": "table3Content2", - "label": "Content", - "input": false, - "tag": "p", - "attrs": [ - { - "value": "", - "attr": "" - } - ], - "className": "", - "content": "{{typeof data.assessment?.mandatoryFees === 'number' ? '$' + (data.assessment.mandatoryFees).toFixed(2) : '(Not eligible)'}}", - "type": "htmlelement", - "refreshOnChange": true, - "hideLabel": true, - "tags": [], - "conditional": { - "show": "", - "when": null, - "eq": "" - }, - "properties": {} - } - ] - } - ], - [ - { - "components": [ - { - "label": "Return Transportation Costs", + "label": "Books and supplies", "attrs": [ { "attr": "", "value": "" } ], - "content": "Transportation costs", + "content": "Books and supplies", "refreshOnChange": false, - "key": "returnTransportationCosts1", + "key": "booksAndSupplies1", "type": "htmlelement", "input": false, "tableView": false, - "id": "ef452122222222222222222222222222222222222222222222", + "hideOnChildrenHidden": false, + "id": "ebykk3d11111111111111111111111111111111111111111111", "placeholder": "", "prefix": "", "customClass": "", @@ -10443,7 +6803,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "tags": [] } ] }, @@ -10457,13 +6818,13 @@ "value": "" } ], - "content": "{{typeof data.assessment?.transportationCost === 'number' ? '$' + (data.assessment.transportationCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.booksAndSuppliesCost === 'number' ? '$' + (data.assessment.booksAndSuppliesCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "transpotationCosts", + "key": "booksCost", "type": "htmlelement", "input": false, "tableView": false, - "id": "et48v5v22222222222222222222222222222222222222222222", + "id": "e64h2611111111111111111111111111111111111111111111", "placeholder": "", "prefix": "", "customClass": "", @@ -10522,7 +6883,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "tags": [] } ] } @@ -10531,21 +6893,78 @@ { "components": [ { - "label": "Miscellaneous Costs", + "key": "table3Content", + "label": "Content", + "input": false, + "tag": "p", + "attrs": [ + { + "value": "", + "attr": "" + } + ], + "className": "", + "content": "Mandatory fees", + "type": "htmlelement", + "tags": [], + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "properties": {}, + "hideLabel": true + } + ] + }, + { + "components": [ + { + "key": "table3Content2", + "label": "Content", + "input": false, + "tag": "p", + "attrs": [ + { + "value": "", + "attr": "" + } + ], + "className": "", + "content": "{{typeof data.assessment?.mandatoryFees === 'number' ? '$' + (data.assessment.mandatoryFees).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "type": "htmlelement", + "refreshOnChange": true, + "hideLabel": true, + "tags": [], + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "properties": {}, + "isNew": false + } + ] + } + ], + [ + { + "components": [ + { + "label": "Return Transportation Costs", "attrs": [ { "attr": "", "value": "" } ], - "content": "Miscellaneous costs", + "content": "Transportation costs", "refreshOnChange": false, - "key": "otherMiscellaneousCosts", + "key": "returnTransportationCosts1", "type": "htmlelement", "input": false, "tableView": false, - "hideOnChildrenHidden": false, - "id": "ep1bita33333333333333333333333333333333333333333333", + "id": "ef452122222222222222222222222222222222222222222222", "placeholder": "", "prefix": "", "customClass": "", @@ -10618,13 +7037,13 @@ "value": "" } ], - "content": "{{typeof data.assessment?.miscellaneousAllowance === 'number' ? '$' + (data.assessment.miscellaneousAllowance).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.transportationCost === 'number' ? '$' + (data.assessment.transportationCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "miscellaneousCost", + "key": "transpotationCosts", "type": "htmlelement", "input": false, "tableView": false, - "id": "e3smtjc33333333333333333333333333333333333333333333", + "id": "et48v5v22222222222222222222222222222222222222222222", "placeholder": "", "prefix": "", "customClass": "", @@ -10664,7 +7083,7 @@ "unique": false }, "conditional": { - "show": "", + "show": null, "when": null, "eq": "" }, @@ -10683,8 +7102,7 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "", - "tags": [] + "className": "" } ] } @@ -10693,57 +7111,35 @@ { "components": [ { - "label": "Total Academic Expenses", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", + "label": "Miscellaneous Costs", "attrs": [ { "attr": "", "value": "" } ], - "content": "Total academic expenses", + "content": "Miscellaneous costs", "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "totalAcademicExpenses", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, + "key": "otherMiscellaneousCosts", "type": "htmlelement", "input": false, "tableView": false, "hideOnChildrenHidden": false, + "id": "ep1bita33333333333333333333333333333333333333333333", "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, + "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", + "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -10758,6 +7154,7 @@ "calculateValue": "", "calculateServer": false, "widget": null, + "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -10767,13 +7164,27 @@ "multiple": false, "unique": false }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "ezmfo4h4" + "tag": "p", + "className": "" } ] }, @@ -10787,13 +7198,13 @@ "value": "" } ], - "content": "${{(typeof data.assessment?.totalAcademicExpenses === 'number' ? data.assessment?.totalAcademicExpenses : 0).toFixed(2)}}", + "content": "{{typeof data.assessment?.miscellaneousAllowance === 'number' ? '$' + (data.assessment.miscellaneousAllowance).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html111", + "key": "miscellaneousCost", "type": "htmlelement", "input": false, "tableView": false, - "id": "e4qolmb44444444444444444444444444444444444444444444", + "id": "e3smtjc33333333333333333333333333333333333333333333", "placeholder": "", "prefix": "", "customClass": "", @@ -10833,7 +7244,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -10852,7 +7263,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "tags": [] } ] } @@ -10916,7 +7328,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -10940,7 +7351,8 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "efvmuph555" + "id": "efvmuph555", + "hideLabel": true } ] }, @@ -10954,7 +7366,7 @@ "value": "" } ], - "content": "{{typeof data.assessment?.childcareCost === 'number' ? '$' + (data.assessment.childcareCost).toFixed(2) : '(Not eligible)'}}", + "content": "{{typeof data.assessment?.childcareCost === 'number' ? '$' + (data.assessment.childcareCost).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "key": "html115", "type": "htmlelement", @@ -10980,7 +7392,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -11019,7 +7430,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true } ] } @@ -11039,7 +7451,7 @@ "value": "" } ], - "content": "Total assessed costs = total academic expenses + childcare costs", + "content": "Total assessed costs", "refreshOnChange": false, "customClass": "", "hidden": false, @@ -11048,7 +7460,7 @@ "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -11084,7 +7496,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -11108,7 +7519,8 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "ek65e8966" + "id": "ek65e8966", + "hideLabel": true } ] }, @@ -11122,7 +7534,7 @@ "value": "" } ], - "content": "${{(typeof data.assessment?.totalAssessmentNeed === 'number' ? data.assessment?.totalAssessmentNeed : 0).toFixed(2)}}", + "content": "${{(typeof data.assessment?.totalAssessmentNeed === 'number' ? data.assessment?.totalAssessmentNeed : 0).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, "key": "html120", "type": "htmlelement", @@ -11148,7 +7560,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -11187,7 +7598,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true } ] } @@ -11277,8 +7689,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "e6ekbvt", - "isNew": false + "id": "e6ekbvt" } ], "placeholder": "", @@ -11501,7 +7912,7 @@ "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -11525,20 +7936,2746 @@ { "components": [ { - "label": "HTML", + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Loan/grant type", + "refreshOnChange": false, + "key": "html59", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ejwkd800000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + }, + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Disbursement 1", + "refreshOnChange": false, + "key": "html60", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "e4ej1ac00000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + }, + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Disbursement 2", + "refreshOnChange": false, + "key": "html61", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "eohdl600000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [], + "customConditional": "" + } + ] + }, + { + "components": [ + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Total", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html62", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "erlfe200000000000000000000000000000000000000000000000000000000000000" + } + ] + } + ], + [ + { + "components": [ + { + "label": "Canada Student Loan", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": " CSLF\r\n \r\n \r\n Canada Student Loan for Full-time Studies\r\n \r\n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "canadaStudentLoan", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "earft1r111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "components": [ + { + "label": "CSLF1", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement1cslf ? '$'+ (data.disbursement.disbursement1cslf).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html2", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "e7p9z6m11111111111111111111111111111111111111111111111111111111111111", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "CSLF2", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement2cslf ? '$'+ (data.disbursement.disbursement2cslf).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html58", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ecj54f11111111111111111111111111111111111111111111111111111111111111", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "CSLFTotal", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "${{((data.disbursement?.disbursement1cslf ? parseFloat(data.disbursement.disbursement1cslf) : 0) + (data.disbursement?.disbursement2cslf ? parseFloat(data.disbursement.disbursement2cslf) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", + "refreshOnChange": true, + "key": "html63", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "evv26e711111111111111111111111111111111111111111111111111111111111111", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": " BCSL\r\n \r\n \r\n B.C. Student Loan\r\n \r\n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ef26pk922222222222222222222222222222222222222222222222222" + } + ] + }, + { + "components": [ + { + "label": "BCSL1", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement1bcsl ? '$'+ (data.disbursement.disbursement1bcsl).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html5", + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "id": "evckse22222222222222222222222222222222222222222222222222222222222222", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "BCSL2", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement2bcsl ? '$'+ (data.disbursement.disbursement2bcsl).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html72", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ezy65wh22222222222222222222222222222222222222222222222222222222222222", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "BCSLTotal", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "${{((data.disbursement?.disbursement1bcsl ? parseFloat(data.disbursement.disbursement1bcsl) : 0) + (data.disbursement?.disbursement2bcsl ? parseFloat(data.disbursement.disbursement2bcsl) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", + "refreshOnChange": true, + "key": "html64", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "e7mjdwl22222222222222222222222222222222222222222222222222222222222222", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "CSGP", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "CSGP\n \n \n Canada Student Grant for Student with Permanent Disability\n \n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "csgp", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "efloic3333333333333333333333333333333333333333333333333" + } + ] + }, + { + "components": [ + { + "label": "CSGP1", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement1csgp ? '$'+ (data.disbursement.disbursement1csgp).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html3", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "epmxn7w33333333333333333333333333333333333333333333333333333333333333", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "CSGP2", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement2csgp ? '$'+ (data.disbursement.disbursement2csgp).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html73", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "eq18c5l33333333333333333333333333333333333333333333333333333333333333", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "CSGPTotal", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "${{((data.disbursement?.disbursement1csgp ? parseFloat(data.disbursement.disbursement1csgp) : 0) + (data.disbursement?.disbursement2csgp ? parseFloat(data.disbursement.disbursement2csgp) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", + "refreshOnChange": true, + "key": "html65", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "egibg33333333333333333333333333333333333333333333333333333333333333", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "CSGD", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "CSGD\n \n \n Canada Student Grant for Students with Dependents\n \n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "csgd", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "efdqser444444444444444444444444444444444444444444444444" + } + ] + }, + { + "components": [ + { + "label": "CSGD1", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement1csgd ? '$'+ (data.disbursement.disbursement1csgd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html4", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "e2zqv5f44444444444444444444444444444444444444444444444444444444444444", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "CSGD2", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement2csgd ? '$'+ (data.disbursement.disbursement2csgd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html74", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "eflxwj44444444444444444444444444444444444444444444444444444444444444", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "CSGDTotal", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "${{((data.disbursement?.disbursement1csgd ? parseFloat(data.disbursement.disbursement1csgd) : 0) + (data.disbursement?.disbursement2csgd ? parseFloat(data.disbursement.disbursement2csgd) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", + "refreshOnChange": true, + "key": "html66", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ec3hk5844444444444444444444444444444444444444444444444444444444444444", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "CSG-FT", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "CSGF\n \n \n Canada Student Grant for Full-time Studies\n \n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "csgFt", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "etkse9r55555555555555555555555555555555555555555555555" + } + ] + }, + { + "components": [ + { + "label": "CSGF1", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement1csgf ? '$'+ (data.disbursement.disbursement1csgf).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html6", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e0ssy5o55555555555555555555555555555555555555555555555555555555555" + } + ] + }, + { + "components": [ + { + "label": "CSGF2", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement2csgf ? '$'+ (data.disbursement.disbursement2csgf).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html75", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eskhwmu5555555555555555555555555555555555555555555555555555555555" + } + ] + }, + { + "components": [ + { + "label": "CSGFTotal", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "${{((data.disbursement?.disbursement1csgf ? parseFloat(data.disbursement.disbursement1csgf) : 0) + (data.disbursement?.disbursement2csgf ? parseFloat(data.disbursement.disbursement2csgf) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", + "refreshOnChange": true, + "key": "html67", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ez6fk655555555555555555555555555555555555555555555555555555555555555", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "CSG-TU", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "CSGT\n \n \n Canada Student Grant for Full-time Top-up\n \n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "csgTu", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e2tuwab6666666666666666666666666666666666666666666666" + } + ] + }, + { + "components": [ + { + "label": "CSGT1", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement1csgt ? '$'+ (data.disbursement.disbursement1csgt).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html8", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "efze3qc666666666666666666666666666666666666666666666666666666666" + } + ] + }, + { + "components": [ + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement2csgt ? '$'+ (data.disbursement.disbursement2csgt).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html76", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "eymn6z66666666666666666666666666666666666666666666666666666666666666", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "CSGTTotal", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "${{((data.disbursement?.disbursement1csgt ? parseFloat(data.disbursement.disbursement1csgt) : 0) + (data.disbursement?.disbursement2csgt ? parseFloat(data.disbursement.disbursement2csgt) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", + "refreshOnChange": true, + "key": "html68", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "e9zowvm66666666666666666666666666666666666666666666666666666666666666", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "BCAG", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "BCAG\n \n \n B.C. Access Grant\n \n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "bcag", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "epkk8aa777777777777777777777777777777777777777777777" + } + ] + }, + { + "components": [ + { + "label": "BCAG1", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement1bcag ? '$'+ (data.disbursement.disbursement1bcag).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html9", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ep0f9gk77777777777777777777777777777777777777777777777777777777777777", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "BCAG2", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement2bcag ? '$'+ (data.disbursement.disbursement2bcag).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html77", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "e7gh9h77777777777777777777777777777777777777777777777777777777777777", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "", + "tags": [] + } + ] + }, + { + "components": [ + { + "label": "BCAGTotal", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "${{((data.disbursement?.disbursement1bcag ? parseFloat(data.disbursement.disbursement1bcag) : 0) + (data.disbursement?.disbursement2bcag ? parseFloat(data.disbursement.disbursement2bcag) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", + "refreshOnChange": true, + "key": "html69", + "type": "htmlelement", + "input": false, + "tableView": false, + "id": "ej84vu77777777777777777777777777777777777777777777777777777777777777", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "className": "" + } + ] + } + ], + [ + { + "components": [ + { + "label": "SBSD", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "SBSD\n \n \n B.C. Supplemental Bursary with Disabilities\n \n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "sbsd", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e20r5588888888888888888888888888888888888888888888" + } + ] + }, + { + "components": [ + { + "label": "SBSD1", "attrs": [ { "attr": "", "value": "" } ], - "content": "Loan/grant type", - "refreshOnChange": false, - "key": "html59", + "content": "{{data.disbursement?.disbursement1sbsd ? '$'+ (data.disbursement.disbursement1sbsd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html11", "type": "htmlelement", "input": false, "tableView": false, - "id": "ejwkd800000000000000000000000000000000000000000000000000000000000000", + "hideOnChildrenHidden": false, + "id": "ejsuao88888888888888888888888888888888888888888888888888888888888888", "placeholder": "", "prefix": "", "customClass": "", @@ -11578,7 +10715,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -11597,7 +10734,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "tags": [] } ] }, @@ -11605,33 +10743,55 @@ "components": [ { "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", "attrs": [ { "attr": "", "value": "" } ], - "content": "Disbursement 1", - "refreshOnChange": false, - "key": "html60", + "content": "{{data.disbursement?.disbursement2sbsd ? '$'+ (data.disbursement.disbursement2sbsd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html78", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "htmlelement", "input": false, "tableView": false, - "id": "e4ej1ac00000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -11646,7 +10806,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -11656,47 +10815,33 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "tag": "p", - "className": "" + "id": "e3tqk688888888888888888888888888888888888888888888888888888888" } ] }, { "components": [ { - "label": "HTML", + "label": "SBSDTotal", "attrs": [ { "attr": "", "value": "" } ], - "content": "Disbursement 2", - "refreshOnChange": false, - "key": "html61", + "content": "${{((data.disbursement?.disbursement1sbsd ? parseFloat(data.disbursement.disbursement1sbsd) : 0) + (data.disbursement?.disbursement2sbsd ? parseFloat(data.disbursement.disbursement2sbsd) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", + "refreshOnChange": true, + "key": "html70", "type": "htmlelement", "input": false, "tableView": false, - "id": "eohdl600000000000000000000000000000000000000000000000000000000000000", + "id": "etamcfr88888888888888888888888888888888888888888888888888888888888888", "placeholder": "", "prefix": "", "customClass": "", @@ -11758,11 +10903,13 @@ "className": "" } ] - }, + } + ], + [ { "components": [ { - "label": "HTML", + "label": "BGPD", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -11773,12 +10920,12 @@ "value": "" } ], - "content": "Total", + "content": "BGPD\n \n \n B.C. Permanent Disability Grant\n \n
    ", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "html62", + "key": "bgpd", "tags": [], "properties": {}, "conditional": { @@ -11801,6 +10948,7 @@ "type": "htmlelement", "input": false, "tableView": false, + "hideOnChildrenHidden": false, "placeholder": "", "prefix": "", "suffix": "", @@ -11841,16 +10989,14 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "erlfe200000000000000000000000000000000000000000000000000000000000000" + "id": "e5oagza9999999999999999999999999999999999999999999" } ] - } - ], - [ + }, { "components": [ { - "label": "Canada Student Loan", + "label": "BGPD1", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -11861,16 +11007,16 @@ "value": "" } ], - "content": " CSLF\r\n \r\n \r\n Canada Student Loan for Full-time Studies\r\n \r\n
    ", - "refreshOnChange": false, + "content": "{{data.disbursement?.disbursement1bgpd ? '$'+ (data.disbursement.disbursement1bgpd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, "customClass": "", "hidden": false, "modalEdit": false, - "key": "canadaStudentLoan", + "key": "html10", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -11889,6 +11035,7 @@ "type": "htmlelement", "input": false, "tableView": false, + "hideOnChildrenHidden": false, "placeholder": "", "prefix": "", "suffix": "", @@ -11929,27 +11076,27 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "earft1r111111111111111111111111111111111111111111111111111" + "id": "e5x9049999999999999999999999999999999999999999999999999999999" } ] }, { "components": [ { - "label": "CSLF1", + "label": "HTML", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement1cslf ? '$'+ data.disbursement.disbursement1cslf : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement2bgpd ? '$'+ (data.disbursement.disbursement2bgpd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html2", + "key": "html79", "type": "htmlelement", "input": false, "tableView": false, - "id": "e7p9z6m11111111111111111111111111111111111111111111111111111111111111", + "id": "eee2yo99999999999999999999999999999999999999999999999999999999999999", "placeholder": "", "prefix": "", "customClass": "", @@ -11989,7 +11136,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -12008,27 +11155,28 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "tags": [] } ] }, { "components": [ { - "label": "CSLF2", + "label": "BGPDTotal", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement2cslf ? '$'+ data.disbursement.disbursement2cslf : '(Not eligible)'}}", + "content": "${{((data.disbursement?.disbursement1bgpd ? parseFloat(data.disbursement.disbursement1bgpd) : 0) + (data.disbursement?.disbursement2bgpd ? parseFloat(data.disbursement.disbursement2bgpd) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, - "key": "html58", + "key": "html71", "type": "htmlelement", "input": false, "tableView": false, - "id": "ecj54f11111111111111111111111111111111111111111111111111111111111111", + "id": "eid1l8n99999999999999999999999999999999999999999999999999999999999999", "placeholder": "", "prefix": "", "customClass": "", @@ -12090,24 +11238,112 @@ "className": "" } ] + } + ], + [ + { + "components": [ + { + "label": "BCSG", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "BCSG\n \n \n B.C. Student Grants\n \n
    ", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "bcsg", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e6dlyvr1010101010101010101010101010101010101010101010101010101010101010" + } + ] }, { "components": [ { - "label": "CSLFTotal", + "label": "BCSG1", "attrs": [ { "attr": "", "value": "" } ], - "content": "${{((data.disbursement?.disbursement1cslf ? parseFloat(data.disbursement.disbursement1cslf) : 0) + (data.disbursement?.disbursement2cslf ? parseFloat(data.disbursement.disbursement2cslf) : 0)).toFixed(2)}}", + "content": "{{data.disbursement?.disbursement1bcsg ? '$'+ (data.disbursement.disbursement1bcsg).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html63", + "key": "html80", "type": "htmlelement", "input": false, "tableView": false, - "id": "evv26e711111111111111111111111111111111111111111111111111111111111111", + "id": "ew280wq1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010", "placeholder": "", "prefix": "", "customClass": "", @@ -12147,7 +11383,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -12166,66 +11402,42 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "tags": [] } ] - } - ], - [ + }, { "components": [ { "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", "attrs": [ { "attr": "", "value": "" } ], - "content": " BCSL\r\n \r\n \r\n B.C. Student Loan\r\n \r\n
    ", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, + "content": "{{data.disbursement?.disbursement2bcsg ? '$'+ (data.disbursement.disbursement2bcsg).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", + "refreshOnChange": true, + "key": "html81", "type": "htmlelement", "input": false, "tableView": false, - "hideOnChildrenHidden": false, + "id": "enanhb1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010", "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, + "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", + "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -12240,6 +11452,7 @@ "calculateValue": "", "calculateServer": false, "widget": null, + "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -12249,34 +11462,48 @@ "multiple": false, "unique": false }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "ef26pk922222222222222222222222222222222222222222222222222" + "tag": "p", + "className": "", + "tags": [] } ] }, { "components": [ { - "label": "BCSL1", + "label": "BCSGTotal", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement1bcsl ? '$'+ data.disbursement.disbursement1bcsl : '(Not eligible)'}}", + "content": "${{((data.disbursement?.disbursement1bcsg ? parseFloat(data.disbursement.disbursement1bcsg) : 0) + (data.disbursement?.disbursement2bcsg ? parseFloat(data.disbursement.disbursement2bcsg) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, - "key": "html5", + "key": "html82", "type": "htmlelement", "input": false, "tableView": false, - "hideOnChildrenHidden": false, - "id": "evckse22222222222222222222222222222222222222222222222222222222222222", + "id": "es2sn71010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010", "placeholder": "", "prefix": "", "customClass": "", @@ -12338,117 +11565,227 @@ "className": "" } ] - }, + } + ] + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "header": [], + "caption": "", + "id": "eabv3m8" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ezhc4k" + }, + { + "title": "Part time Panel", + "labelWidth": "", + "labelMargin": "", + "theme": "default", + "tooltip": "", + "customClass": "formio-panel-unset", + "collapsible": false, + "hidden": false, + "disabled": false, + "modalEdit": false, + "key": "partTimePanel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": "true", + "when": "offeringIntensity", + "eq": "Part Time" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Table", + "numRows": 7, + "numCols": 4, + "cloneRows": false, + "cellAlignment": "left", + "labelWidth": "", + "labelMargin": "", + "customClass": "flexible-width-formio-bordered extra-small", + "striped": false, + "bordered": false, + "hover": true, + "condensed": true, + "hidden": false, + "hideLabel": false, + "modalEdit": false, + "key": "partTimeTable", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "table", + "input": false, + "tableView": false, + "rows": [ + [ { "components": [ { - "label": "BCSL2", + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement2bcsl ? '$'+ data.disbursement.disbursement2bcsl : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html72", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "ezy65wh22222222222222222222222222222222222222222222222222222222222222", - "placeholder": "", - "prefix": "", + "content": "Loan/grant type", + "refreshOnChange": false, "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, + "key": "html83", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "BCSLTotal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1bcsl ? parseFloat(data.disbursement.disbursement1bcsl) : 0) + (data.disbursement?.disbursement2bcsl ? parseFloat(data.disbursement.disbursement2bcsl) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "key": "html64", "type": "htmlelement", "input": false, "tableView": false, - "id": "e7mjdwl22222222222222222222222222222222222222222222222222222222222222", "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -12463,7 +11800,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -12473,36 +11809,20 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "tag": "p", - "className": "" + "id": "epyxcxt000000000000000000000000000000000000000000000000000000000" } ] - } - ], - [ + }, { "components": [ { - "label": "CSGP", + "label": "HTML", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -12513,12 +11833,12 @@ "value": "" } ], - "content": "CSGP\n \n \n Canada Student Grant for Student with Permanent Disability\n \n", + "content": "Disbursement 1", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "csgp", + "key": "html84", "tags": [], "properties": {}, "conditional": { @@ -12581,41 +11901,63 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "efloic3333333333333333333333333333333333333333333333333" + "id": "ezhinfo00000000000000000000000000000000000000000000000000000000" } ] }, { "components": [ { - "label": "CSGP1", + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement1csgp ? '$'+ data.disbursement.disbursement1csgp : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html3", + "content": "Disbursement 2", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html85", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = !!data.disbursement.disbursement2Date", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "htmlelement", "input": false, "tableView": false, - "id": "epmxn7w33333333333333333333333333333333333333333333333333333333333333", "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -12630,7 +11972,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -12640,140 +11981,69 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "tag": "p", - "className": "" + "id": "es72nqh0000000000000000000000000000000000000000000000000000000" } ] }, { "components": [ { - "label": "CSGP2", + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement2csgp ? '$'+ data.disbursement.disbursement2csgp : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html73", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "eq18c5l33333333333333333333333333333333333333333333333333333333333333", - "placeholder": "", - "prefix": "", + "content": "Total", + "refreshOnChange": false, "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, + "key": "html86", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "CSGPTotal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1csgp ? parseFloat(data.disbursement.disbursement1csgp) : 0) + (data.disbursement?.disbursement2csgp ? parseFloat(data.disbursement.disbursement2csgp) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "key": "html65", "type": "htmlelement", "input": false, "tableView": false, - "id": "egibg33333333333333333333333333333333333333333333333333333333333333", "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -12788,7 +12058,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -12798,27 +12067,13 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "tag": "p", - "className": "" + "id": "e6qxdyl000000000000000000000000000000000000000000000000000000" } ] } @@ -12827,7 +12082,7 @@ { "components": [ { - "label": "CSGD", + "label": "CSGP", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -12838,16 +12093,16 @@ "value": "" } ], - "content": "CSGD\n \n \n Canada Student Grant for Students with Dependents\n \n", + "content": "Canada Student Grant for Student with Disabilities (CSG-PD)\n \n \n Please click here for more information about this grant.\n \n", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "csgd", + "key": "csgp1", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -12882,7 +12137,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -12906,27 +12160,29 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "efdqser444444444444444444444444444444444444444444444444" + "id": "ell147s333333333333333333333333333333333333333333333", + "hideLabel": true, + "isNew": false } ] }, { "components": [ { - "label": "CSGD1", + "label": "CSGP1", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement1csgd ? '$'+ data.disbursement.disbursement1csgd : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement1csgp ? '$'+ (data.disbursement.disbursement1csgp).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html4", + "key": "html41", "type": "htmlelement", "input": false, "tableView": false, - "id": "e2zqv5f44444444444444444444444444444444444444444444444444444444444444", + "id": "e2wq7ue333333333333333333333333333333333333333333333333333333333", "placeholder": "", "prefix": "", "customClass": "", @@ -12946,7 +12202,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -12966,7 +12221,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -12985,27 +12240,29 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true, + "tags": [] } ] }, { "components": [ { - "label": "CSGD2", + "label": "CSGP2", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement2csgd ? '$'+ data.disbursement.disbursement2csgd : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement2csgp ? '$'+ (data.disbursement.disbursement2csgp).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html74", + "key": "html91", "type": "htmlelement", "input": false, "tableView": false, - "id": "eflxwj44444444444444444444444444444444444444444444444444444444444444", + "id": "e18poyb333333333333333333333333333333333333333333333333333333333", "placeholder": "", "prefix": "", "customClass": "", @@ -13025,7 +12282,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13045,7 +12301,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -13064,27 +12320,30 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true, + "tags": [], + "customConditional": "show = !!data.disbursement.disbursement2Date" } ] }, { "components": [ { - "label": "CSGDTotal", + "label": "CSGPTotal", "attrs": [ { "attr": "", "value": "" } ], - "content": "${{((data.disbursement?.disbursement1csgd ? parseFloat(data.disbursement.disbursement1csgd) : 0) + (data.disbursement?.disbursement2csgd ? parseFloat(data.disbursement.disbursement2csgd) : 0)).toFixed(2)}}", + "content": "${{((data.disbursement?.disbursement1csgp ? parseFloat(data.disbursement.disbursement1csgp) : 0) + (data.disbursement?.disbursement2csgp ? parseFloat(data.disbursement.disbursement2csgp) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, - "key": "html66", + "key": "html92", "type": "htmlelement", "input": false, "tableView": false, - "id": "ec3hk5844444444444444444444444444444444444444444444444444444444444444", + "id": "e5q8vct333333333333333333333333333333333333333333333333333333333", "placeholder": "", "prefix": "", "customClass": "", @@ -13104,7 +12363,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13143,7 +12401,9 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true, + "tags": [] } ] } @@ -13152,7 +12412,7 @@ { "components": [ { - "label": "CSG-FT", + "label": "CSG-PT", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -13163,16 +12423,16 @@ "value": "" } ], - "content": "CSGF\n \n \n Canada Student Grant for Full-time Studies\n \n", + "content": "Canada Student Grant for Part-time Students (CSG-PT)\n \n \n Please click here for more information about this grant.\n \n", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "csgFt", + "key": "cspt1", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -13207,7 +12467,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13231,14 +12490,15 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "etkse9r55555555555555555555555555555555555555555555555" + "id": "ecsnfrp555555555555555555555555555555555555555555", + "hideLabel": true } ] }, { "components": [ { - "label": "CSGF1", + "label": "CSPT1", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -13249,16 +12509,16 @@ "value": "" } ], - "content": "{{data.disbursement?.disbursement1csgf ? '$'+ data.disbursement.disbursement1csgf : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement1cspt ? '$'+ (data.disbursement.disbursement1cspt).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "customClass": "", "hidden": false, "modalEdit": false, - "key": "html6", + "key": "html95", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -13293,7 +12553,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13317,14 +12576,15 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "e0ssy5o55555555555555555555555555555555555555555555555555555555555" + "id": "ex33mlh55555555555555555555", + "hideLabel": true } ] }, { "components": [ { - "label": "CSGF2", + "label": "CSPT2", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -13335,21 +12595,21 @@ "value": "" } ], - "content": "{{data.disbursement?.disbursement2csgf ? '$'+ data.disbursement.disbursement2csgf : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement2cspt ? '$'+ (data.disbursement.disbursement2cspt).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, "customClass": "", "hidden": false, "modalEdit": false, - "key": "html75", + "key": "html96", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" }, - "customConditional": "", + "customConditional": "show = !!data.disbursement.disbursement2Date", "logic": [], "attributes": {}, "overlay": { @@ -13379,7 +12639,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13403,47 +12662,69 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "eskhwmu5555555555555555555555555555555555555555555555555555555555" + "id": "exdpoew55555555555555555555555", + "hideLabel": true } ] }, { "components": [ { - "label": "CSGFTotal", + "label": "CSPTTotal", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", "attrs": [ { "attr": "", "value": "" } ], - "content": "${{((data.disbursement?.disbursement1csgf ? parseFloat(data.disbursement.disbursement1csgf) : 0) + (data.disbursement?.disbursement2csgf ? parseFloat(data.disbursement.disbursement2csgf) : 0)).toFixed(2)}}", + "content": "${{((data.disbursement?.disbursement1cspt ? parseFloat(data.disbursement.disbursement1cspt) : 0) + (data.disbursement?.disbursement2cspt ? parseFloat(data.disbursement.disbursement2cspt) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, - "key": "html67", + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html97", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "htmlelement", "input": false, "tableView": false, - "id": "ez6fk655555555555555555555555555555555555555555555555555555555555555", "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13452,7 +12733,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -13462,27 +12742,14 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "tag": "p", - "className": "" + "id": "emevzw555555555555555555555", + "hideLabel": true } ] } @@ -13491,7 +12758,7 @@ { "components": [ { - "label": "CSG-TU", + "label": "CSGD", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -13502,16 +12769,16 @@ "value": "" } ], - "content": "CSGT\n \n \n Canada Student Grant for Full-time Top-up\n \n", + "content": "Canada Student Grant for Students with Dependants (CSG-PTDEP)\n\n \n Please click here for more information about this grant.\n \n", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "csgTu", + "key": "csgd1", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -13530,7 +12797,6 @@ "type": "htmlelement", "input": false, "tableView": false, - "hideOnChildrenHidden": false, "placeholder": "", "prefix": "", "suffix": "", @@ -13547,7 +12813,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13571,69 +12836,47 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "e2tuwab6666666666666666666666666666666666666666666666" + "id": "e2gy4nq4444444444444444444444444444444444444444444", + "hideLabel": true } ] }, { "components": [ { - "label": "CSGT1", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", + "label": "CSGD1", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement1csgt ? '$'+ data.disbursement.disbursement1csgt : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement1csgd ? '$'+ (data.disbursement.disbursement1csgd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html8", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, + "key": "html42", "type": "htmlelement", "input": false, "tableView": false, + "id": "exgddks444444444444444444444444444444444444444444444444444444444", "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, + "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", + "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13642,6 +12885,7 @@ "calculateValue": "", "calculateServer": false, "widget": null, + "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -13651,33 +12895,49 @@ "multiple": false, "unique": false }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "efze3qc666666666666666666666666666666666666666666666666666666666" + "tag": "p", + "className": "", + "hideLabel": true, + "tags": [] } ] }, { "components": [ { - "label": "HTML", + "label": "CSGD2", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement2csgt ? '$'+ data.disbursement.disbursement2csgt : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement2csgd ? '$'+ (data.disbursement.disbursement2csgd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html76", + "key": "html93", "type": "htmlelement", "input": false, "tableView": false, - "id": "eymn6z66666666666666666666666666666666666666666666666666666666666666", + "id": "ejxkhj444444444444444444444444444444444444444444444444444444444", "placeholder": "", "prefix": "", "customClass": "", @@ -13697,7 +12957,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13717,7 +12976,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -13736,27 +12995,30 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true, + "tags": [], + "customConditional": "show = !!data.disbursement.disbursement2Date" } ] }, { "components": [ { - "label": "CSGTTotal", + "label": "CSGDTotal", "attrs": [ { "attr": "", "value": "" } ], - "content": "${{((data.disbursement?.disbursement1csgt ? parseFloat(data.disbursement.disbursement1csgt) : 0) + (data.disbursement?.disbursement2csgt ? parseFloat(data.disbursement.disbursement2csgt) : 0)).toFixed(2)}}", + "content": "${{((data.disbursement?.disbursement1csgd ? parseFloat(data.disbursement.disbursement1csgd) : 0) + (data.disbursement?.disbursement2csgd ? parseFloat(data.disbursement.disbursement2csgd) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, - "key": "html68", + "key": "html94", "type": "htmlelement", "input": false, "tableView": false, - "id": "e9zowvm66666666666666666666666666666666666666666666666666666666666666", + "id": "e3cspmf444444444444444444444444444444444444444444444444444444444", "placeholder": "", "prefix": "", "customClass": "", @@ -13776,7 +13038,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13815,7 +13076,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true } ] } @@ -13824,7 +13086,7 @@ { "components": [ { - "label": "BCAG", + "label": "HTML", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -13835,16 +13097,16 @@ "value": "" } ], - "content": "BCAG\n \n \n B.C. Access Grant\n \n", + "content": "B.C. Access Grant for Part-time Studies (BCAG)\n\n \n Please click here for more information about this grant.\n \n", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "bcag", + "key": "html37", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -13880,7 +13142,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13904,7 +13165,8 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "epkk8aa777777777777777777777777777777777777777777777" + "id": "esvxnen2222222222222222222222222222222222222222222222", + "hideLabel": true } ] }, @@ -13918,13 +13180,14 @@ "value": "" } ], - "content": "{{data.disbursement?.disbursement1bcag ? '$'+ data.disbursement.disbursement1bcag : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement1bcag ? '$'+ (data.disbursement.disbursement1bcag).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html9", + "key": "html40", "type": "htmlelement", "input": false, "tableView": false, - "id": "ep0f9gk77777777777777777777777777777777777777777777777777777777777777", + "hideOnChildrenHidden": false, + "id": "ejxmn4v222222222222222222222222222222222222222222222222222222222", "placeholder": "", "prefix": "", "customClass": "", @@ -13944,7 +13207,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -13964,7 +13226,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -13983,7 +13245,9 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true, + "tags": [] } ] }, @@ -13997,13 +13261,13 @@ "value": "" } ], - "content": "{{data.disbursement?.disbursement2bcag ? '$'+ data.disbursement.disbursement2bcag : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement2bcag ? '$'+ (data.disbursement.disbursement2bcag).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html77", + "key": "html89", "type": "htmlelement", "input": false, "tableView": false, - "id": "e7gh9h77777777777777777777777777777777777777777777777777777777777777", + "id": "ek5tfxh222222222222222222222222222222222222222222222222222222222", "placeholder": "", "prefix": "", "customClass": "", @@ -14023,7 +13287,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -14043,7 +13306,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -14062,7 +13325,10 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true, + "tags": [], + "customConditional": "show = !!data.disbursement.disbursement2Date" } ] }, @@ -14076,13 +13342,13 @@ "value": "" } ], - "content": "${{((data.disbursement?.disbursement1bcag ? parseFloat(data.disbursement.disbursement1bcag) : 0) + (data.disbursement?.disbursement2bcag ? parseFloat(data.disbursement.disbursement2bcag) : 0)).toFixed(2)}}", + "content": "${{((data.disbursement?.disbursement1bcag ? parseFloat(data.disbursement.disbursement1bcag) : 0) + (data.disbursement?.disbursement2bcag ? parseFloat(data.disbursement.disbursement2bcag) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, - "key": "html69", + "key": "html90", "type": "htmlelement", "input": false, "tableView": false, - "id": "ej84vu77777777777777777777777777777777777777777777777777777777777777", + "id": "e4uhkeb222222222222222222222222222222222222222222222222222222222", "placeholder": "", "prefix": "", "customClass": "", @@ -14102,7 +13368,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -14141,7 +13406,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true } ] } @@ -14150,7 +13416,7 @@ { "components": [ { - "label": "SBSD", + "label": "Canada Student Loan", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -14161,16 +13427,16 @@ "value": "" } ], - "content": "SBSD\n \n \n B.C. Supplemental Bursary with Disabilities\n \n", + "content": "Canada Student Loan for Part-time Students (CSL-PT)", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "sbsd", + "key": "canadaStudentLoan1", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -14189,7 +13455,6 @@ "type": "htmlelement", "input": false, "tableView": false, - "hideOnChildrenHidden": false, "placeholder": "", "prefix": "", "suffix": "", @@ -14206,7 +13471,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -14230,28 +13494,28 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "e20r5588888888888888888888888888888888888888888888" + "id": "e28v2u11111111111111111111111111111111111111111111111", + "hideLabel": true } ] }, { "components": [ { - "label": "SBSD1", + "label": "CSLP1", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement1sbsd ? '$'+ data.disbursement.disbursement1sbsd : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement1cslp ? '$'+ (data.disbursement.disbursement1cslp).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html11", + "key": "html17", "type": "htmlelement", "input": false, "tableView": false, - "hideOnChildrenHidden": false, - "id": "ejsuao88888888888888888888888888888888888888888888888888888888888888", + "id": "ee1pums111111111111111111111111111111111111111111111111111111111", "placeholder": "", "prefix": "", "customClass": "", @@ -14271,7 +13535,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -14291,7 +13554,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -14310,69 +13573,48 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true, + "tags": [] } ] }, { "components": [ { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", + "label": "CSLP2", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement2sbsd ? '$'+ data.disbursement.disbursement2sbsd : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement2cslp ? '$'+ (data.disbursement.disbursement2cslp).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html78", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, + "key": "html87", "type": "htmlelement", "input": false, "tableView": false, + "id": "e9zkqfj111111111111111111111111111111111111111111111111111111111", "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, + "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", + "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -14381,6 +13623,7 @@ "calculateValue": "", "calculateServer": false, "widget": null, + "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -14390,33 +13633,50 @@ "multiple": false, "unique": false }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "e3tqk688888888888888888888888888888888888888888888888888888888" + "tag": "p", + "className": "", + "hideLabel": true, + "tags": [], + "customConditional": "show = !!data.disbursement.disbursement2Date" } ] }, { "components": [ { - "label": "SBSDTotal", + "label": "CSLPTotal", "attrs": [ { "attr": "", "value": "" } ], - "content": "${{((data.disbursement?.disbursement1sbsd ? parseFloat(data.disbursement.disbursement1sbsd) : 0) + (data.disbursement?.disbursement2sbsd ? parseFloat(data.disbursement.disbursement2sbsd) : 0)).toFixed(2)}}", + "content": "${{((data.disbursement?.disbursement1cslp ? parseFloat(data.disbursement.disbursement1cslp) : 0) + (data.disbursement?.disbursement2cslp ? parseFloat(data.disbursement.disbursement2cslp) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, - "key": "html70", + "key": "html88", "type": "htmlelement", "input": false, "tableView": false, - "id": "etamcfr88888888888888888888888888888888888888888888888888888888888888", + "id": "exmj5gq111111111111111111111111111111111111111111111111111111111", "placeholder": "", "prefix": "", "customClass": "", @@ -14436,7 +13696,6 @@ "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -14475,7 +13734,8 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "hideLabel": true } ] } @@ -14484,7 +13744,7 @@ { "components": [ { - "label": "BGPD", + "label": "SBSD", "labelWidth": "", "labelMargin": "", "tag": "p", @@ -14495,16 +13755,16 @@ "value": "" } ], - "content": "BGPD\n \n \n B.C. Permanent Disability Grant\n \n", + "content": "B.C. Supplemental Bursary for Students with Disabilities (SBSD)\n\n \n Please click here for more information about this grant.\n \n", "refreshOnChange": false, "customClass": "", "hidden": false, "modalEdit": false, - "key": "bgpd", + "key": "sbsd1", "tags": [], "properties": {}, "conditional": { - "show": null, + "show": "", "when": null, "eq": "", "json": "" @@ -14564,64 +13824,41 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "e5oagza9999999999999999999999999999999999999999999" + "id": "e412lb866666666666666666666666666666666666666666" } ] }, { "components": [ { - "label": "BGPD1", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", + "label": "SBSD1", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement1bgpd ? '$'+ data.disbursement.disbursement1bgpd : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement1sbsd ? '$'+ (data.disbursement.disbursement1sbsd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html10", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, + "key": "html98", "type": "htmlelement", "input": false, "tableView": false, - "hideOnChildrenHidden": false, + "id": "eib0ivc666666666666666666666666666666666666666666666666666666666", "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, + "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", + "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -14636,6 +13873,7 @@ "calculateValue": "", "calculateServer": false, "widget": null, + "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -14645,33 +13883,48 @@ "multiple": false, "unique": false }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "e5x9049999999999999999999999999999999999999999999999999999999" + "tag": "p", + "className": "", + "tags": [] } ] }, { "components": [ { - "label": "HTML", + "label": "SBSD2", "attrs": [ { "attr": "", "value": "" } ], - "content": "{{data.disbursement?.disbursement2bgpd ? '$'+ data.disbursement.disbursement2bgpd : '(Not eligible)'}}", + "content": "{{data.disbursement?.disbursement2sbsd ? '$'+ (data.disbursement.disbursement2sbsd).toLocaleString('en-CA', { minimumFractionDigits: 2 }) : '(Not eligible)'}}", "refreshOnChange": true, - "key": "html79", + "key": "html99", "type": "htmlelement", "input": false, "tableView": false, - "id": "eee2yo99999999999999999999999999999999999999999999999999999999999999", + "id": "e1ed55l666666666666666666666666666666666666666666666666666666666", "placeholder": "", "prefix": "", "customClass": "", @@ -14711,7 +13964,7 @@ "unique": false }, "conditional": { - "show": null, + "show": "", "when": null, "eq": "" }, @@ -14730,27 +13983,29 @@ "allowMultipleMasks": false, "addons": [], "tag": "p", - "className": "" + "className": "", + "tags": [], + "customConditional": "show = !!data.disbursement.disbursement2Date" } ] }, { "components": [ { - "label": "BGPDTotal", + "label": "SBSDTotal", "attrs": [ { "attr": "", "value": "" } ], - "content": "${{((data.disbursement?.disbursement1bgpd ? parseFloat(data.disbursement.disbursement1bgpd) : 0) + (data.disbursement?.disbursement2bgpd ? parseFloat(data.disbursement.disbursement2bgpd) : 0)).toFixed(2)}}", + "content": "${{((data.disbursement?.disbursement1sbsd ? parseFloat(data.disbursement.disbursement1sbsd) : 0) + (data.disbursement?.disbursement2sbsd ? parseFloat(data.disbursement.disbursement2sbsd) : 0)).toLocaleString('en-CA', { minimumFractionDigits: 2 })}}", "refreshOnChange": true, - "key": "html71", + "key": "html100", "type": "htmlelement", "input": false, "tableView": false, - "id": "eid1l8n99999999999999999999999999999999999999999999999999999999999999", + "id": "eaug0gh666666666666666666666666666666666666666666666666666666666", "placeholder": "", "prefix": "", "customClass": "", @@ -14813,333 +14068,889 @@ } ] } - ], - [ - { - "components": [ - { - "label": "BCSG", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "BCSG\n \n \n B.C. Student Grants\n \n", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "bcsg", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", + ] + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "header": [], + "caption": "", + "id": "edfxn8m" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e887kxl", + "hideLabel": true + } + ], + "collapsed": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "evcbgu4" + }, + { + "title": "When your funds will be received Panel", + "labelWidth": "", + "labelMargin": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "disabled": false, + "modalEdit": false, + "key": "whenYourFundsWillBeReceivedPanel", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": "", + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "h3", + "className": "category-header-medium primary-color", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "When your funds will be received?", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html125", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "enco4e4" + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Funds may be received on or after the following date(s). Please note your actual disbursement date(s) may vary.", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html126", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e7loo5" + }, + { + "customClass": "formio-panel-bg-secondary", + "collapsible": false, + "hideLabel": true, + "key": "panel3", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "labelWidth": "", + "labelMargin": "", + "columns": [ + { + "components": [ + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "label-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Disbursement date 1:", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html127", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e6dlyvr1010101010101010101010101010101010101010101010101010101010101010" - } - ] - }, - { - "components": [ - { - "label": "BCSG1", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement1bcsg ? '$'+ data.disbursement.disbursement1bcsg : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html80", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "ew280wq1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eem6nbn" + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "h3", + "className": "category-header-medium primary-color", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement1Date ? data.disbursement.disbursement1Date : '-'}}", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html129", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "HTML", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement2bcsg ? '$'+ data.disbursement.disbursement2bcsg : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html81", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "enanhb1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e7slxf2" + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "The earliest date you will receive funding.", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html131", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - }, - { - "components": [ - { - "label": "BCSGTotal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1bcsg ? parseFloat(data.disbursement.disbursement1bcsg) : 0) + (data.disbursement?.disbursement2bcsg ? parseFloat(data.disbursement.disbursement2bcsg) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "key": "html82", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "es2sn71010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e5z0fjl" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "label-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Disbursement date 2:", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html128", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = !!data.disbursement.disbursement2Date", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ] + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "esazl89" + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "h3", + "className": "category-header-medium primary-color", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{data.disbursement?.disbursement2Date ? data.disbursement.disbursement2Date : '-'}}", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html130", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = !!data.disbursement.disbursement2Date", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e76phfc" + }, + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "The earliest date you will receive funding.", + "refreshOnChange": false, + "key": "html132", + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "id": "egxl4v", + "className": "", + "tags": [], + "customConditional": "show = !!data.disbursement.disbursement2Date" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } ], + "autoAdjust": false, + "customClass": "", + "hidden": false, + "hideLabel": false, + "modalEdit": false, + "key": "columns2", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "columns", + "input": false, "placeholder": "", "prefix": "", "suffix": "", @@ -15148,9 +14959,10 @@ "protected": false, "unique": false, "persistent": false, - "clearOnHide": true, + "clearOnHide": false, "refreshOn": "", "redrawOn": "", + "tableView": false, "dataGridLabel": false, "labelPosition": "top", "description": "", @@ -15181,9 +14993,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "header": [], - "caption": "", - "id": "eabv3m8" + "id": "ehnta4n" } ], "placeholder": "", @@ -15194,19 +15004,25 @@ "protected": false, "unique": false, "persistent": false, + "hidden": false, "clearOnHide": false, "refreshOn": "", "redrawOn": "", + "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, "widget": null, + "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -15216,2504 +15032,2004 @@ "multiple": false, "unique": false }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], "tree": false, "lazyLoad": false, - "id": "ezhc4k" - }, + "title": "Panel", + "theme": "default", + "breadcrumb": "default", + "id": "ezqs0ll" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eb78nwj", + "hideLabel": true + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eb78nwj", + "hideLabel": true + }, + { + "title": "Master Student Financial Assistance Agreement", + "labelWidth": "", + "labelMargin": "", + "theme": "default", + "tooltip": "", + "customClass": " pt-3", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": "", + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "HTML", + "tag": "h2", + "className": "category-header-large primary-color pt-3", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Master Student Financial Assistance Agreement", + "refreshOnChange": false, + "key": "html52", + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ezdlvfd", + "tags": [] + }, + { + "label": "HTML", + "attrs": [ { - "title": "Part time Panel", - "labelWidth": "", - "labelMargin": "", - "theme": "default", - "tooltip": "", - "customClass": "formio-panel-unset", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "partTimePanel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "offeringIntensity", - "eq": "Part Time" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Table", - "numRows": 7, - "numCols": 4, - "cloneRows": false, - "cellAlignment": "left", - "labelWidth": "", - "labelMargin": "", - "customClass": "formio-bordered extra-small", - "striped": false, - "bordered": false, - "hover": true, - "condensed": true, - "hidden": false, - "hideLabel": false, - "modalEdit": false, - "key": "partTimeTable", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "table", - "input": false, - "tableView": false, - "rows": [ - [ - { - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Loan/grant type", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html83", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "epyxcxt000000000000000000000000000000000000000000000000000000000" - } - ] + "attr": "", + "value": "" + } + ], + "content": "Before we can issue your Canada – BC integrated student financial assistance, you must first submit your master student financial assistance agreement (MSFAA) unless you have already submitted your MSFAA for a previous application. You will receive a 'Welcome Email' from the National Student Loans Service Centre (NSLSC) that includes a URL to register for an online account with the NSLSC where you will complete and submit your MSFAA using the 10 digit MSFAA number provided on this Notice of Assessment.", + "refreshOnChange": false, + "key": "html53", + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "id": "ejy6te", + "className": "", + "tags": [] + }, + { + "clearOnHide": false, + "label": "Columns", + "input": false, + "tableView": false, + "key": "panel1Columns", + "columns": [ + { + "components": [ + { + "clearOnHide": false, + "key": "panel1ColumnsPanelPanel", + "input": false, + "title": "MSFAA Disbursement 1", + "theme": "default", + "tableView": false, + "components": [ + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your Part-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html135", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = data.disbursement.disbursement1MSFAAStatus === \"signed\" && data.offeringIntensity === \"Part Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your Full-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html146", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = data.disbursement.disbursement1MSFAAStatus === \"signed\" && data.offeringIntensity === \"Full Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your new Part-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html141", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = data.disbursement.disbursement1MSFAAStatus === \"pending\" && data.offeringIntensity === \"Part Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false }, - { - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Disbursement 1", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html84", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ezhinfo00000000000000000000000000000000000000000000000000000000" - } - ] + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your new Full-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html147", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" }, - { - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Disbursement 2", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html85", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "es72nqh0000000000000000000000000000000000000000000000000000000" - } - ] + "customConditional": "show = data.disbursement.disbursement1MSFAAStatus === \"pending\" && data.offeringIntensity === \"Full Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false }, - { - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "Total", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html86", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e6qxdyl000000000000000000000000000000000000000000000000000000" - } - ] - } - ], - [ - { - "components": [ - { - "label": "Canada Student Loan", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "CSLP\n \n \n Canada Student Loan for Part-time Studies\n \n", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "canadaStudentLoan1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e28v2u11111111111111111111111111111111111111111111111" - } - ] + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your cancelled Part-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html142", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = data.disbursement.disbursement1MSFAAStatus === \"cancelled\" && data.offeringIntensity === \"Part Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false }, - { - "components": [ - { - "label": "CSLP1", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement1cslp ? '$'+ data.disbursement.disbursement1cslp : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html17", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "ee1pums111111111111111111111111111111111111111111111111111111111", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your cancelled Full-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html148", + "tags": [], + "properties": {}, + "conditional": { + "show": "true", + "when": "disbursement1MSFAAStatus", + "eq": "cancelled", + "json": "" }, - { - "components": [ - { - "label": "CSLP2", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement2cslp ? '$'+ data.disbursement.disbursement2cslp : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html87", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "e9zkqfj111111111111111111111111111111111111111111111111111111111", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "customConditional": "show = data.disbursement.disbursement1MSFAAStatus === \"cancelled\" && data.offeringIntensity === \"Full Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "h3", + "className": "category-header-medium primary-color", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{ data.disbursement.disbursement1MSFAANumber}}\n", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html121", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" }, - { - "components": [ - { - "label": "CSLPTotal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1cslp ? parseFloat(data.disbursement.disbursement1cslp) : 0) + (data.disbursement?.disbursement2cslp ? parseFloat(data.disbursement.disbursement2cslp) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "key": "html88", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "exmj5gq111111111111111111111111111111111111111111111111111111111", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ], - [ - { - "components": [ - { - "label": "HTML", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "BCAG\n \n \n B.C. Access Grant\n \n", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html37", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "esvxnen2222222222222222222222222222222222222222222222" - } - ] + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Please submit your new MSFAA number on NSLSC to receive your money.", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html140", + "tags": [], + "properties": {}, + "conditional": { + "show": "true", + "when": "disbursement1MSFAAStatus", + "eq": "pending", + "json": "" }, - { - "components": [ - { - "label": "BCAG1", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement1bcag ? '$'+ data.disbursement.disbursement1bcag : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html40", - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "id": "ejxmn4v222222222222222222222222222222222222222222222222222222222", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" }, - { - "components": [ - { - "label": "BCAG2", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement2bcag ? '$'+ data.disbursement.disbursement2bcag : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html89", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "ek5tfxh222222222222222222222222222222222222222222222222222222222", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "This number was cancelled on {{ data.disbursement.disbursement1MSFAACancelledDateFormatted}}.", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html136", + "tags": [], + "properties": {}, + "conditional": { + "show": "true", + "when": "disbursement1MSFAAStatus", + "eq": "cancelled", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" }, - { - "components": [ - { - "label": "BCAGTotal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1bcag ? parseFloat(data.disbursement.disbursement1bcag) : 0) + (data.disbursement?.disbursement2bcag ? parseFloat(data.disbursement.disbursement2bcag) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "key": "html90", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "e4uhkeb222222222222222222222222222222222222222222222222222222222", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ], - [ - { - "components": [ - { - "label": "CSGP", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "CSGP\n \n \n Canada Student Grant for Student with Permanent Disability\n \n", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "csgp1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ell147s333333333333333333333333333333333333333333333" - } - ] + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + } + ], + "type": "panel", + "breadcrumb": "default", + "tags": [], + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "properties": {}, + "hideLabel": true, + "customClass": "formio-panel-unset" + }, + { + "autofocus": false, + "input": true, + "label": "Reissue MSFAA number", + "tableView": false, + "key": "panel1ColumnsReissueMsfaAnumber", + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "action": "custom", + "disableOnInvalid": false, + "theme": "primary", + "type": "button", + "tags": [], + "conditional": { + "show": "true", + "when": "canReissueMSFAA", + "eq": "true" + }, + "properties": {}, + "event": "reissueMSFAA", + "custom": "form.emit('customEvent', { type: \"reissueMSFAA\" });" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0 + }, + { + "components": [ + { + "clearOnHide": false, + "key": "panel1ColumnsPanelPanel2", + "input": false, + "title": "MSFAA Disbursement 2", + "theme": "default", + "tableView": false, + "components": [ + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your Part-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html149", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" }, - { - "components": [ - { - "label": "CSGP1", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement1csgp ? '$'+ data.disbursement.disbursement1csgp : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html41", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "e2wq7ue333333333333333333333333333333333333333333333333333333333", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "customConditional": "show = data.disbursement.disbursement2MSFAAStatus === \"signed\" && data.offeringIntensity === \"Part Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" }, - { - "components": [ - { - "label": "CSGP2", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement2csgp ? '$'+ data.disbursement.disbursement2csgp : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html91", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "e18poyb333333333333333333333333333333333333333333333333333333333", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your Full-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html150", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" }, - { - "components": [ - { - "label": "CSGPTotal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1csgp ? parseFloat(data.disbursement.disbursement1csgp) : 0) + (data.disbursement?.disbursement2csgp ? parseFloat(data.disbursement.disbursement2csgp) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "key": "html92", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "e5q8vct333333333333333333333333333333333333333333333333333333333", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ], - [ - { - "components": [ - { - "label": "CSGD", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "CSGD\n \n \n Canada Student Grant for Students with Dependents\n \n", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "csgd1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e2gy4nq4444444444444444444444444444444444444444444" - } - ] + "customConditional": "show = data.disbursement.disbursement2MSFAAStatus === \"signed\" && data.offeringIntensity === \"Full Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your new Part-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html143", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = data.disbursement.disbursement2MSFAAStatus === \"pending\" && data.offeringIntensity === \"Part Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" }, - { - "components": [ - { - "label": "CSGD1", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement1csgd ? '$'+ data.disbursement.disbursement1csgd : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html42", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "exgddks444444444444444444444444444444444444444444444444444444444", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false }, - { - "components": [ - { - "label": "CSGD2", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement2csgd ? '$'+ data.disbursement.disbursement2csgd : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html93", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "ejxkhj444444444444444444444444444444444444444444444444444444444", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your new Full-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html151", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = data.disbursement.disbursement2MSFAAStatus === \"pending\" && data.offeringIntensity === \"Full Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false }, - { - "components": [ - { - "label": "CSGDTotal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1csgd ? parseFloat(data.disbursement.disbursement1csgd) : 0) + (data.disbursement?.disbursement2csgd ? parseFloat(data.disbursement.disbursement2csgd) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "key": "html94", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "e3cspmf444444444444444444444444444444444444444444444444444444444", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ], - [ - { - "components": [ - { - "label": "CSPT", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "CSPT\n \n \n Canada Student Grant for Part-time Studies\n \n", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "cspt1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ecsnfrp555555555555555555555555555555555555555555" - } - ] + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your cancelled Part-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html144", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "show = data.disbursement.disbursement1MSFAAStatus === \"cancelled\" && data.offeringIntensity === \"Part Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false }, - { - "components": [ - { - "label": "CSPT1", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement1cspt ? '$'+ data.disbursement.disbursement1cspt : '(Not eligible)'}}", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html95", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ex33mlh55555555555555555555" - } - ] + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "font-bold", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Your cancelled Full-time MSFAA number:", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html152", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" }, - { - "components": [ - { - "label": "CSPT2", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement2cspt ? '$'+ data.disbursement.disbursement2cspt : '(Not eligible)'}}", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html96", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "exdpoew55555555555555555555555" - } - ] + "customConditional": "show = data.disbursement.disbursement2MSFAAStatus === \"cancelled\" && data.offeringIntensity === \"Full Time\";", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "h3", + "className": "category-header-medium primary-color", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "{{ data.disbursement.disbursement2MSFAANumber}}\n", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html137", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" }, - { - "components": [ - { - "label": "CSPTTotal", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1cspt ? parseFloat(data.disbursement.disbursement1cspt) : 0) + (data.disbursement?.disbursement2cspt ? parseFloat(data.disbursement.disbursement2cspt) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "html97", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "emevzw555555555555555555555" - } - ] - } - ], - [ - { - "components": [ - { - "label": "SBSD", - "labelWidth": "", - "labelMargin": "", - "tag": "p", - "className": "", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "SBSD\n \n \n B.C. Supplemental Bursary with Disabilities\n \n", - "refreshOnChange": false, - "customClass": "", - "hidden": false, - "modalEdit": false, - "key": "sbsd1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "htmlelement", - "input": false, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e412lb866666666666666666666666666666666666666666" - } - ] + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Please submit your new MSFAA number on NSLSC to receive your money.", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html138", + "tags": [], + "properties": {}, + "conditional": { + "show": "true", + "when": "disbursement2MSFAAStatus", + "eq": "pending", + "json": "" }, - { - "components": [ - { - "label": "SBSD1", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement1sbsd ? '$'+ data.disbursement.disbursement1sbsd : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html98", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "eib0ivc666666666666666666666666666666666666666666666666666666666", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" }, - { - "components": [ - { - "label": "SBSD2", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "{{data.disbursement?.disbursement2sbsd ? '$'+ data.disbursement.disbursement2sbsd : '(Not eligible)'}}", - "refreshOnChange": true, - "key": "html99", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "e1ed55l666666666666666666666666666666666666666666666666666666666", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + }, + { + "label": "HTML", + "labelWidth": "", + "labelMargin": "", + "tag": "p", + "className": "", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "This number was cancelled on {{ data.disbursement.disbursement2MSFAACancelledDateFormatted}}.", + "refreshOnChange": true, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "html139", + "tags": [], + "properties": {}, + "conditional": { + "show": "true", + "when": "disbursement2MSFAAStatus", + "eq": "cancelled", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" }, - { - "components": [ - { - "label": "SBSDTotal", - "attrs": [ - { - "attr": "", - "value": "" - } - ], - "content": "${{((data.disbursement?.disbursement1sbsd ? parseFloat(data.disbursement.disbursement1sbsd) : 0) + (data.disbursement?.disbursement2sbsd ? parseFloat(data.disbursement.disbursement2sbsd) : 0)).toFixed(2)}}", - "refreshOnChange": true, - "key": "html100", - "type": "htmlelement", - "input": false, - "tableView": false, - "id": "eaug0gh666666666666666666666666666666666666666666666666666666666", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tag": "p", - "className": "" - } - ] - } - ] + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehqv5z", + "hideLabel": true + } ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false + "type": "panel", + "breadcrumb": "default", + "tags": [], + "conditional": { + "show": "", + "when": null, + "eq": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "header": [], - "caption": "", - "id": "edfxn8m" + "properties": {}, + "hideLabel": true, + "customClass": "formio-panel-unset", + "customConditional": "show = data.disbursement.disbursement1MSFAAId !== data.disbursement.disbursement2MSFAAId && !!data.disbursement.disbursement2MSFAAId" } ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e887kxl" + "width": 6, + "offset": 0, + "push": 0, + "pull": 0 + } + ], + "type": "columns", + "hideLabel": true, + "tags": [], + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "properties": {} + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ec2nq79" + }, + { + "title": "Next steps", + "labelWidth": "", + "labelMargin": "", + "theme": "default", + "tooltip": "", + "customClass": " pt-3", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "ifYouveAlreadyHadALoanPanel", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": "", + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Your Assessment", + "labelWidth": "", + "labelMargin": "", + "tag": "h2", + "className": "category-header-large primary-color pt-3", + "attrs": [ + { + "attr": "", + "value": "" } ], - "collapsed": true, + "content": "Next steps", + "refreshOnChange": false, + "customClass": "", + "hidden": false, + "modalEdit": false, + "key": "noticeOfAssessment2", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "htmlelement", + "input": false, + "tableView": false, "placeholder": "", "prefix": "", "suffix": "", @@ -17722,13 +17038,16 @@ "protected": false, "unique": false, "persistent": false, - "clearOnHide": false, + "clearOnHide": true, "refreshOn": "", "redrawOn": "", "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, "autofocus": false, "dbIndex": false, "customDefaultValue": "", @@ -17750,9 +17069,160 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "tree": false, - "lazyLoad": false, - "id": "evcbgu4" + "id": "e4f7vxq", + "hideLabel": true + }, + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "Please accept your assessment to move your application forward. Please ensure your banking information is up to date by logging in to your \n National Student Loan Service Centre account\n . If your banking information is not up to date, you may not receive your funding.", + "refreshOnChange": false, + "key": "html122", + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "id": "eublpd", + "className": "", + "tags": [] + }, + { + "label": "HTML", + "attrs": [ + { + "attr": "", + "value": "" + } + ], + "content": "If you are not receiving funding, but are still attending school, you can contact your financial aid office for information about in-study payment-free status. If you do not want to move forward with this application, you can cancel using the \"Cancel application\" option.", + "refreshOnChange": false, + "key": "html123", + "type": "htmlelement", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": "", + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tag": "p", + "id": "es8ibw", + "className": "", + "tags": [] } ], "placeholder": "", @@ -17793,7 +17263,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "eb78nwj" + "id": "e6sjrvk" } ] } \ No newline at end of file diff --git a/sources/packages/web/src/assets/css/formio-shared.scss b/sources/packages/web/src/assets/css/formio-shared.scss index 9994b4be94..331b46035b 100644 --- a/sources/packages/web/src/assets/css/formio-shared.scss +++ b/sources/packages/web/src/assets/css/formio-shared.scss @@ -601,11 +601,15 @@ max-width: 70px; } +.flexible-width-formio-bordered table tbody tr td { + max-width: 355px; +} + // Custom tooltip for html component(or components without tooltip feature) in formio. .formio-custom-tooltip { position: absolute; display: inline-flex; - z-index: 1; + z-index: auto; } .formio-custom-tooltip:before { @@ -620,6 +624,12 @@ @extend .tooltip-style; visibility: hidden; opacity: 1; + z-index: 100; +} + +td .formio-custom-tooltip:hover .tooltip-text { + display: block; + min-width: 200px; } .formio-custom-tooltip:hover .tooltip-text { diff --git a/sources/packages/web/src/components/generic/FooterButtons.vue b/sources/packages/web/src/components/generic/FooterButtons.vue index a646a0efc1..57e05122a5 100644 --- a/sources/packages/web/src/components/generic/FooterButtons.vue +++ b/sources/packages/web/src/components/generic/FooterButtons.vue @@ -2,8 +2,8 @@