diff --git a/ayanova/src/components/gz-data-table.vue b/ayanova/src/components/gz-data-table.vue
index 0915f48f..a968d1e8 100644
--- a/ayanova/src/components/gz-data-table.vue
+++ b/ayanova/src/components/gz-data-table.vue
@@ -66,7 +66,11 @@
>
-
+ |
{{ c.v }}
@@ -242,7 +246,7 @@
{{ getHeaderText(c.key) }}
-
+
{{ c.v }}
@@ -575,6 +579,16 @@ export default {
//i is the actual AyaNova index of vm record so we have all we need to open vm object
window.$gz.eventBus.$emit("openobject", { type: typeToOpen, id: i });
},
+ cellStyle(c) {
+ // :style="'style=background-color:#FFFFE0;color:black;border:1px solid #BDB76B;' + c.clr + ';'"
+ if (c.clr && c.clr.length > 3) {
+ if (c.clr[0] != "#") {
+ c.clr = "#" + c.clr;
+ }
+ return { border: `4px solid ${c.clr}` };
+ }
+ return null;
+ },
async getDataFromApi(deSelectAll) {
let vm = this;
@@ -882,6 +896,11 @@ function buildRecords(listData, columndefinitions) {
columnObject["ot"] = column.ot;
}
+ //rgba color to decorate field with
+ if (column.clr) {
+ columnObject["clr"] = column.clr;
+ }
+
o.columns["c" + iColumn.toString()] = columnObject;
//Is:
//Headers: [ { "text": "Name", "value": "c1" }, { "text": "Serial #", "value": "c2" },
diff --git a/ayanova/src/views/home-reminders.vue b/ayanova/src/views/home-reminders.vue
index c915852c..56855bf8 100644
--- a/ayanova/src/views/home-reminders.vue
+++ b/ayanova/src/views/home-reminders.vue
@@ -1,21 +1,173 @@
-
+
+
+
+
+
+
+
|