forked from openMF/community-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UIconfig.json
37 lines (37 loc) · 1.19 KB
/
UIconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Configuration file for making the fields hide , show and Read only
// To enable the configuration create a folder called config under app/scripts and copy the UIconfig.json file under app/scripts/config
//Any of the values set to true the respected fields are hidden and the values set to false the fields are visible in the respected page.
{
"enableUIDisplayConfiguration": true,
"uiDisplayConfigurations": {
"loanAccount": {
"isHiddenField": {
"fundId": true,
"linkAccountId": true,
"createStandingInstruction": true,
"numberOfRepayments": true,
"repaymentEvery": true,
"repaymentFrequencyType": true,
"repaymentFrequencyNthDayType": true,
"repaymentFrequencyDayOfWeekType": true,
"interestChargedFromDate": true,
"repaymentsStartingFromDate": true,
"interestType": true,
"amortizationType": true,
"interestCalculationPeriodType": true,
"inArrearsTolerance": true,
"graceOnInterestCharged": true,
"transactionProcessingStrategyId": true,
"graceOnInterestPayment": true,
"graceOnArrearsAgeing": true
},
"isHiddenSection": {
"interestRecalculationSection": true,
"collateralSection": true
},
"isReadOnlyField": {
"loanTermFrequencyType": true
}
}
}
}