Feat(SQL, UI): 1. Calc and Get Many Stored Procedures created for Weather, Lighting Level, Assessment, Distraction Type, Distraction Intensity Level, Distraction, Bribe, Assessment Command Modality Link, Response Quality Metric, Obedience Level, and Assessment Response. \n 2. Assessments and Assessment pages created with data loading and hooked up, but not saving.

This commit is contained in:
2025-07-24 16:48:18 +01:00
parent 6bb3a77a34
commit fad5336cc4
137 changed files with 10442 additions and 1116 deletions

View File

@@ -6,6 +6,7 @@ import Validation from "../../lib/validation.js";
import DOM from "../../dom.js";
import { isEmpty } from "../../lib/utils.js";
import DogMixinPage from "./mixin.js";
import Utils from "../../lib/utils.js";
export default class DogTableMixinPage extends DogMixinPage {
constructor(pageCurrent) {
@@ -22,4 +23,10 @@ export default class DogTableMixinPage extends DogMixinPage {
hookupTable() {
// Implement table-specific functionality here
}
hookupFieldsLocation() {
this.page.hookupTableCellDdlPreviews(
flagLocation
, Utils.getListFromDict(filterLocations) // .sort((a, b) => a[flagName].localeCompare(b[flagName]))
);
}
}