Alle FAQ
- Home
-
Alle FAQ
FAQ - Häufig gestellte Fragen und Antworten
Filtern nach
Alle
Anlegen
E-Banking
Allgemein
Finanzassistent
Konten und Karten
Sicherheit
Wertschriftendepot
Zahlungen
eBill
Allgemein
Rechnungsempfänger
Instant Payment
Loginverfahren
Mobile Payment
Apple Pay
Garmin Pay
Google Pay
Samsung Pay
SwatchPAY!
myValiant
Online-Kontoeröffnung
QR-Rechnung
Allgemein
Rechnungsempfänger
Rechnungssteller
Valiant App
Allgemein
App aktivieren
Biometrie und App-PIN
Digitale Kontoeröffnung
Kompatibilität und Verfügbarkeit
Vorsorgen
Zahlen
- keyboard_arrow_right Alle
-
keyboard_arrow_right
Anlegen
-
keyboard_arrow_right
E-Banking
-
keyboard_arrow_right
eBill
-
keyboard_arrow_right
Instant Payment
-
keyboard_arrow_right
Loginverfahren
-
keyboard_arrow_right
Mobile Payment
-
keyboard_arrow_right
myValiant
-
keyboard_arrow_right
Online-Kontoeröffnung
-
keyboard_arrow_right
QR-Rechnung
-
keyboard_arrow_right
Valiant App
-
keyboard_arrow_right
Vorsorgen
-
keyboard_arrow_right
Zahlen
Content with FAQ myValiant .
An error occurred while processing the template.
The following has evaluated to null or missing: ==> curEntry.getAssetRenderer() [in template "20101#20128#35374" at line 12, column 25] ---- 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: assetRenderer = curEntry.getAssetRend... [in template "20101#20128#35374" at line 12, column 9] ----
1<style>
2 .taglib-categorization-filter {
3 display: none;
4 }
5</style>
6
7<div class="accordion valiant-faq">
8 <#if entries?has_content>
9 <div class="tabs">
10 <#list entries as curEntry>
11 <#assign
12 assetRenderer = curEntry.getAssetRenderer()
13 article = assetRenderer.getArticle()
14 title = assetRenderer.getTitle(locale)
15 categoryIds = curEntry.getCategoryIds()
16 />
17
18 <#function hasCategory>
19 <#if renderRequest.getParameter("categoryId")??>
20 <#local curCategoryId = renderRequest.getParameter("categoryId")>
21 <#list categoryIds as categoryId>
22 <#if ("" + categoryId) == curCategoryId>
23 <#return true>
24 </#if>
25 </#list>
26 <#return false>
27 <#else>
28 <#return true>
29 </#if>
30 </#function>
31
32 <#if hasCategory()>
33 <@liferay_journal["journal-article"]
34 articleId=article.getArticleId()
35 groupId=article.getGroupId()
36 />
37 </#if>
38 </#list>
39 </div>
40 </#if>
41</div>
42
43<script>
44 var articleId = getCurrentArticleId();
45 if (articleId) {
46 setTimeout(function () {
47 document.getElementById("checkbox-" + articleId).checked = true;
48 document.getElementById("article-" + articleId).scrollIntoView({ behavior: 'smooth', block: 'center' });
49 }, 250)
50 }
51
52 function getCurrentArticleId() {
53 const url_string = window.location.href;
54 const url = new URL(url_string);
55 return url.searchParams.get("articleId");
56 }
57</script>