
The following has evaluated to null or missing:
==> isPageSelected [in template "20116#20152#33057" at line 91, column 28]
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----
----
FTL stack trace ("~" means nesting-related):
- Failed at: ${isPageSelected} [in template "20116#20152#33057" at line 91, column 26]
----
1<#assign layoutService = serviceLocator.findService("com.liferay.portal.kernel.service.LayoutLocalService")>
2<#assign firstPageState="close">
3<#assign secondPageState="close">
4<#assign showFirstChild="">
5<#assign showSecondChild="">
6<#assign navigationCounter = "">
7<#assign secondNavigationCounter1 = "">
8<#assign secondNavigationCounter2 = "">
9<#if entries?has_content>
10<#assign isPageSelected=0>
11<#assign counter=0>
12<#if layoutService.getLayout(entries[0].getLayout().getParentPlid())??>
13 <#assign parentLayout = layoutService.getLayout(entries[0].getLayout().getParentPlid())>
14</#if>
15<section class="page-group-title left-nav">
16 <div class="container-fluid p-0" style="display:block;">
17 <div class="row">
18 <div class="col" style="/*padding:0px;*/">
19 <div id="left_block">
20 <div id="left_dropbar" class="left_content">
21 <ul id="firstlevel">
22 <#if parentLayout.name?has_content>
23 <h4>${parentLayout.getName(locale)}</h4>
24 </#if>
25 <#list entries as navigationEntry>
26 <#assign showChildren = (displayDepth != 1) && navigationEntry.hasBrowsableChildren() />
27 <li>
28 <a href="${navigationEntry.getURL()}">
29 <#if navigationEntry.isSelected()>
30 <#assign isPageSelected=1> <span id="left-nav-title">
31 </#if>
32 ${navigationEntry.getName()} </span>
33 </a>
34 <#assign navigationCounter = navigationEntry?counter>
35 <#if showChildren>
36 <span class="product-side-arrrow" id="subfirstlevel${navigationCounter}" style=" margin-top: -26px;"><i id="icon" class="icon icon-chevron-right "></i></span>
37 <ul class="subfirstlevel${navigationCounter}" style="display: none; margin: 0px -22px 0px -46px;">
38 <#list navigationEntry.getBrowsableChildren() as childNavigationItem>
39 <#if childNavigationItem.isSelected()>
40 <#assign firstPageState="open">
41 <#assign showFirstChild="subfirstlevel${navigationCounter}">
42 </#if>
43 <li>
44 <a href="${childNavigationItem.getURL()}" >
45 <#if childNavigationItem.isSelected()>
46 <#assign isPageSelected=1> <span id="left-nav-title">
47 </#if>
48 ${childNavigationItem.getName()}</span>
49 </a>
50 <#assign secondNavigationCounter2 = navigationEntry?counter>
51 <#assign secondNavigationCounter1 = childNavigationItem?counter>
52 <#if childNavigationItem.hasBrowsableChildren()>
53 <span class="second-product-side-arrrow" id="subsecondlevel${secondNavigationCounter2}${secondNavigationCounter1}" style=" margin-top: -26px;"><i id="icon" class="icon icon-chevron-right "></i></span>
54 <ul class="subsecondlevel${secondNavigationCounter2}${secondNavigationCounter1}" style="display: none;margin: 0px -50px;">
55 <#list childNavigationItem.getBrowsableChildren() as subChildNavigationItem>
56 <#if subChildNavigationItem.isSelected()>
57 <#assign secondPageState="open">
58 <#assign showFirstChild="subfirstlevel${navigationCounter}">
59 <#assign showSecondChild="subsecondlevel${secondNavigationCounter2}${secondNavigationCounter1}">
60 </#if>
61 <li style="border-bottom: none;">
62 <a href="${subChildNavigationItem.getURL()}">
63 <#if subChildNavigationItem.isSelected()>
64 <#assign isPageSelected=1> <span id="left-nav-title">
65 </#if>
66 ${subChildNavigationItem.getName()}</span>
67 </a>
68 </li>
69 </#list>
70 </ul>
71 </#if>
72 </li>
73 </#list>
74 </ul>
75 </#if>
76 </li>
77 </#list>
78 </ul>
79 </div>
80 </div>
81 </div>
82 </div>
83 </div>
84</section>
85</#if>
86
87<script>
88$(document).ready(function() {
89 var firstPageState="${firstPageState}";
90 var showFirstChild="${showFirstChild}";
91 var isPageSelected= "${isPageSelected}";
92 var secondPageState= "${secondPageState}";
93 var showSecondChild= "${showSecondChild}";
94
95 if(isPageSelected==1){
96 $('#left-nav-title').addClass('highlighted');
97 }
98 if(firstPageState=="open") {
99 $('.'+showFirstChild).show();
100 $('#'+showFirstChild).find($(".icon")).toggleClass(' icon-chevron-right icon-chevron-down');
101 }
102 if(secondPageState == "open") {
103 $('.'+showFirstChild).show();
104 $('.'+showSecondChild).show();
105 $('#'+showFirstChild).find($(".icon")).toggleClass(' icon-chevron-right icon-chevron-down');
106 $('#'+showSecondChild).find($(".icon")).toggleClass(' icon-chevron-right icon-chevron-down');
107 }
108});
109
110$(".product-side-arrrow").click(function () {
111 var id = $(this).attr('id');
112 $("."+id).slideToggle("100");
113 $(this).find($(".icon")).toggleClass(' icon-chevron-right icon-chevron-down');
114});
115
116$(".second-product-side-arrrow").click(function(){
117 var id = $(this).attr('id');
118 $("."+id).slideToggle("100");
119 $(this).find($(".icon")).toggleClass(' icon-chevron-right icon-chevron-down');
120})
121
122
123</script>
124
125<style>
126.second-product-side-arrrow {
127 float: right;
128}
129.left-nav {
130 margin-bottom:30px;
131}
132.highlighted{
133 font-weight: bold;
134 color:#500f29;
135}
136#left_dropbar li a:hover {
137 font-weight: bold;
138}
139#firstlevel li:last-child{
140 border-bottom: none;
141}
142
143#left_dropbar {
144 margin: 0 !important;
145 padding: 0px 0px 20px 0px !important;
146}
147</style>
Group Personal Accident Insurance (Suraksha Kawach, Health & Wellness)
Presenting Royal Sundaram General Insurance company – Personal Accident Policy to cover IPPB
customers against Death and Disablement arising out of Accident.
Life is full of unexpected moments. With our Personal Accident Policy-Suraksha Kawach, we are here to ensure you and your loved ones are financially secure in times of need.
Designed to protect against accidental death and disablement, this policy offers peace of mind with benefits that safeguard your financial future when life takes an unexpected turn.
Product Features and Benefit:
Major Cover
- Accidental Death
- Permanent Partial Disability
- Permanent Total Disability
- Medical Expenses due to accident
- Hospital Cash
- Unlimited Tele Consultation
Product Benefits:
- Accidental Death- It covers Death due to Accident within 365 days of the accident date. Coverage limit is 100% of the Sum Insured.
- Permanent Total Disability- It covers Total Disability which is permanent in nature & occurs within 365 days of the accident Date. Coverage limit is 100% of the Sum Insured.
- loss of the sight of both eyes
- Physical separation of or the loss of ability to use both hands or both feet
- Physical separation of or the loss of ability to use one hand and one foot
- Loss of sight of one eye and the physical separation of or the loss of ability to use either one hand or one foot
- Permanent Partial Disability- The policy covers the total and continuous loss or impairment of a body part or sensory organ, with the percentage of disability specified in policy document.
- Accidental Hospitalization- Expenses incurred due to an admission in a Hospital because of an accident for a minimum period of 24 consecutive hours are covered under the policy.
- Accident Hospital Cash Benefit-The policy provides a per day benefit for the specified period of Hospitalization due to Accidental bodily injury.
- Teleconsultation: Insured member can avail Unlimited teleconsultation during the calendar year.
- Educational Grant: If a claim is paid under accidental death or permanent total disability, then an additional benefit payment is made to the dependent child/children max 2 below the age of 25 years.
Features of Suraksha Kawach:
|
Entry age |
18-65 Years |
|
Policy tenure |
1 year |
|
Policy offered to |
IPPB Customers |
Coverage:
|
FEATURES |
Option -1 |
Option -2 |
|
Sum Insured |
Rs.5,00,000 |
RS.10,00,000 |
|
Policy Type |
Self Only |
Self Only |
|
Age Band (Years) |
18-65 |
18-65 |
|
Accidental Death |
100% of Sum Insured |
100% of Sum Insured |
|
Permanent Total Disability |
100% of Sum Insured |
100% of Sum Insured |
|
Permanent Partial Disability |
As per Disability Table |
As per Disability Table |
|
Hospitalisation Expenses |
10% of the Sum Insured or actuals |
10% of the Sum Insured or actuals |
|
Carriage of Dead Body |
Rs.5,000 |
Rs.5,000 |
|
Educational Grant |
Rs. 25,000/Child. Max 2 Children |
Rs. 50,000/Child. Max 2 Children |
|
Home Alteration & Vehicle Modification Benefit |
Reimbursement of actual expenses incurred subject to a maximum Rs.1 lac |
Reimbursement of actual expenses incurred subject to a maximum Rs.1 lac |
|
Hospital Cash |
Rs.500/Day up to 15 Days for Accident-related hospitalization. |
Rs.500/Day up to 15 Days for Accident-related hospitalization. |
|
Tele Consultation |
Unlimited |
Unlimited |
|
Premium Including GST 18% |
Rs.345 |
Rs.565 |
Download Brochure : click here to download the brochure
Claims Process : Click here to download the claim forms
Download FAQs: Click here to download the FAQs
Disclaimer: The Participation by IPPB’s customer in insurance products is purely on a voluntary basis. There is no “Linkage” either direct or indirect between the provision of banking services offered by the bank to its customers and use of the insurance products.



