This commit is contained in:
@@ -46,7 +46,7 @@ SHELL / NAV / MENUS / LAYOUT
|
|||||||
|
|
||||||
TODO: LOCALIZATION
|
TODO: LOCALIZATION
|
||||||
|
|
||||||
- DataTable Editing and saving a widget makes it disappear from list, the default sort order sb by record ID so they stay in same order
|
|
||||||
- DataTable changing screen width doesn't automatically transition to alternate view seems to require a forced refresh when it shouldn't
|
- DataTable changing screen width doesn't automatically transition to alternate view seems to require a forced refresh when it shouldn't
|
||||||
- DataTable clean out old comments / clean up code
|
- DataTable clean out old comments / clean up code
|
||||||
|
|
||||||
|
|||||||
@@ -290,7 +290,7 @@ export default {
|
|||||||
records: [],
|
records: [],
|
||||||
rowsPerPageItems: [5, 10, 25, 50, 100],
|
rowsPerPageItems: [5, 10, 25, 50, 100],
|
||||||
selected: [],
|
selected: [],
|
||||||
narrowFormat: this.$vuetify.breakpoint.xs
|
narrowFormat: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
@@ -324,11 +324,10 @@ export default {
|
|||||||
if (newValue.length != oldValue.length) {
|
if (newValue.length != oldValue.length) {
|
||||||
this.handleSelectChange();
|
this.handleSelectChange();
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"$vuetify.breakpoint.xs": function(value) {
|
||||||
|
this.narrowFormat = value;
|
||||||
}
|
}
|
||||||
// ,
|
|
||||||
// "$vuetify.breakpoint.xs": function(value) {
|
|
||||||
// this.narrowFormat = value;
|
|
||||||
// }
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//Used by narrow view to get the "header" text for a column based on the column key
|
//Used by narrow view to get the "header" text for a column based on the column key
|
||||||
|
|||||||
Reference in New Issue
Block a user