intézd ügyeidet sorban állás nélkül
kapcsolat
Hiba jelentkezett a sablon feldolgozása során.
The following has evaluated to null or missing: ==> cur_buttonTextLevel2.buttonTextLevel3 [in template "20157#20197#274415" at line 26, column 22] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- 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: #if cur_buttonTextLevel2.buttonTextLe... [in template "20157#20197#274415" at line 26, column 17] ----
1<#assign namespace = randomNamespace>
2
3<div id="${namespace}contactBox" class="contact-box contact-box-small contact-box-openable">
4
5 <div class="header toggler-header-collapsed">
6 <div class="icon">
7 <i class="${iconClass.getData()}"></i>
8 </div>
9 <div class="c-content">
10 <h2 class="title">${title.getData()}</h2>
11 </div>
12 </div>
13 <div class="content toggler-content-collapsed">
14<#if buttonTextLevel1.getSiblings()?has_content>
15 <ol class="telecenter">
16 <#list buttonTextLevel1.getSiblings() as cur_buttonTextLevel1>
17 <#if validator.isNotNull(cur_buttonTextLevel1.getData())>
18 <li data-num="${cur_buttonTextLevel1.getData()}">
19 <span>${cur_buttonTextLevel1.menuNameLevel1.getData()}</span>
20 <#if cur_buttonTextLevel1.buttonTextLevel2.getSiblings()?has_content>
21 <ol>
22 <#list cur_buttonTextLevel1.buttonTextLevel2.getSiblings() as cur_buttonTextLevel2>
23 <#if validator.isNotNull(cur_buttonTextLevel2.getData())>
24 <li data-num="${cur_buttonTextLevel2.getData()}">
25 <span>${cur_buttonTextLevel2.menuNameLevel2.getData()}</span>
26 <#if cur_buttonTextLevel2.buttonTextLevel3.getSiblings()?has_content>
27 <ol>
28 <#list cur_buttonTextLevel2.buttonTextLevel3.getSiblings() as cur_buttonTextLevel3>
29 <#if validator.isNotNull(cur_buttonTextLevel3.getData())>
30 <li data-num="${cur_buttonTextLevel3.getData()}">
31 <span>${cur_buttonTextLevel3.menuNameLevel3.getData()}</span>
32 <#if cur_buttonTextLevel3.buttonTextLevel4.getSiblings()?has_content>
33 <ol>
34 <#list cur_buttonTextLevel3.buttonTextLevel4.getSiblings() as cur_buttonTextLevel4>
35 <#if validator.isNotNull(cur_buttonTextLevel4.getData())>
36 <li data-num="${cur_buttonTextLevel4.getData()}">
37 <span>${cur_buttonTextLevel4.menuNameLevel4.getData()}</span>
38 </li>
39 </#if>
40 </#list>
41 </ol>
42 </#if>
43 </li>
44 </#if>
45 </#list>
46 </ol>
47 </#if>
48 </li>
49 </#if>
50 </#list>
51 </ol>
52 </#if>
53 </li>
54 </#if>
55 </#list>
56 </ol>
57</#if>
58 </div>
59
60</div>
61
62<script type="text/javascript">
63 AUI().ready('aui-toggler', function(A){
64 new A.Toggler({
65 container: '#${namespace}contactBox',
66 content: '#${namespace}contactBox .content',
67 expanded: false,
68 header: '#${namespace}contactBox .header'
69 });
70 });
71</script>