This commit is contained in:
@@ -42,7 +42,7 @@ All platforms and browsers
|
||||
- DONE WIRE up save menu item and add code to disable save on broken rules (and make red, disabled etc)
|
||||
- DONE Move wire up event code from app.vue to gzmenu and call it from app.vue
|
||||
|
||||
### - RIGHTS in form state so can easily enable / disable etc
|
||||
- DONE RIGHTS in form state so can easily enable / disable etc
|
||||
- DONE INFO - SERVER will return on request of an object one of these:
|
||||
- DONE Not authenticated at all 401
|
||||
- DONE Redirect to login
|
||||
@@ -67,10 +67,9 @@ All platforms and browsers
|
||||
- DONE Edit form title, does the edit form need a title so users know where they are at?
|
||||
- DONE currently widget edit doesn't have a particular look or title so if you are at the top of it on a small device you can't see the url fully or really know which page it is
|
||||
- DONE A small title top left that stands out might be approprpiate, also a icon beside it?
|
||||
|
||||
- DONE: Application name is all lowercase "ayanova" when installed to device, must be something in the manifest files?
|
||||
- DONE: Check about page localization code, is it firing in the right place because on Edge and iPad firefox it didn't show localized at first until a refresh so it fetched the keys but didn't display properly
|
||||
- Calendar on iPad in two occasions with ff and opera the calendar date could not be selected until a time was changed then the date worked. Before that it would always stay the same no matter what selection was made and the UI would not show a change on select or press of date either.
|
||||
- TO TEST: Calendar on iPad in two occasions with ff and opera the calendar date could not be selected until a time was changed then the date worked. Before that it would always stay the same no matter what selection was made and the UI would not show a change on select or press of date either.
|
||||
|
||||
- Navigation guard: navigate away with unsaved changes should warn and prevent but have option to continue anyway
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<v-layout column wrap class="my-5" align-center v-if="this.formState.ready">
|
||||
<v-flex xs12 mt-1 mb-2>
|
||||
<v-flex xs12 mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<v-layout row v-if="this.formState.ready">
|
||||
<v-flex xs12 mt-1 mb-2>
|
||||
<v-flex xs12 mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- <v-flex xs12>
|
||||
<v-container grid-list-xl>-->
|
||||
<v-layout row wrap align-top v-if="this.formState.ready">
|
||||
<v-flex xs12 mt-1 mb-2 >
|
||||
<v-flex xs12 mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<v-layout row v-if="this.formState.ready">
|
||||
<v-flex xs12 mt-1 mb-2>
|
||||
<v-flex xs12 mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
|
||||
Reference in New Issue
Block a user