From 899b7dfef483814ede4746edc689a23884b147a1 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 2 Sep 2020 18:23:34 +0000 Subject: [PATCH] --- ayanova/src/views/ay-report-edit.vue | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/ayanova/src/views/ay-report-edit.vue b/ayanova/src/views/ay-report-edit.vue index 0bf3313e..6d4b8105 100644 --- a/ayanova/src/views/ay-report-edit.vue +++ b/ayanova/src/views/ay-report-edit.vue @@ -31,20 +31,20 @@ Helpers - - {{ $ay.t("ReportEditorTestRun") }} - - {{ $ay.t("ReportEditorData") }} + + + {{ $ay.t("ReportEditorTestRun") }} +
-
+
test
@@ -155,7 +155,7 @@ Immediately render last report code needs proper implementation for both widget currently it's nonsense print / preview coded to work with saved report and renders - +"Design" translation should be "Report editor" build release for joyce to play with and give feedback */ @@ -434,6 +434,8 @@ Handlebars.registerHelper('loud', function (aString) { vm.view = "properties"; break; case "test": + //render to the div + testRender(vm); vm.view = "test"; break; case "template": @@ -697,6 +699,7 @@ Handlebars.registerHelper('loud', function (aString) { } } }; +//end of vue object ///////////////////////////// // @@ -864,4 +867,11 @@ async function fetchReportData(vm) { vm.reportData = res.data; } } + +///////////////////////////////// +// +// +async function testRender(vm) { + alert("TEST RENDER"); +}