auswertung finished
This commit is contained in:
@ -135,6 +135,7 @@ body {
|
||||
border: 1px solid;
|
||||
border-collapse: collapse;
|
||||
margin:auto;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
#idList th {
|
||||
|
@ -45,6 +45,9 @@ APP.Application_cl = class {
|
||||
this.detailFehlerSw_o = new APP.DetailView_cl('fehler', '/fehler/', 'fehlerswdetail.tpl');
|
||||
this.detailFehlerQsp_o = new APP.DetailView_cl('fehler', '/fehler/', 'fehlerqspdetail.tpl');
|
||||
|
||||
this.listPro_o = new APP.ListView_cl('prolist', '/prolist/', 'prolist.tpl');
|
||||
this.listKat_o = new APP.ListView_cl('katlist', '/katlist/', 'katlist.tpl');
|
||||
|
||||
// this.listSources_o = new APP.ListView_cl('source', '/source/', 'sourceslist.tpl');
|
||||
// this.detailSources_o = new APP.SourceDetailView_cl('source', '/source/', 'sourcedetail.tpl');
|
||||
// this.listEvaluated_o = new APP.ListView_cl('evaluated', '/evaluated/', 'evaluatedlist.tpl');
|
||||
@ -154,6 +157,12 @@ APP.Application_cl = class {
|
||||
// Detailformular im Content-Bereich anzeigen
|
||||
self_opl.setContent_p(self_opl.detailFehlerQsp_o, data_apl[1]);
|
||||
break;
|
||||
case 'prolist':
|
||||
self_opl.setContent_p(self_opl.listPro_o, data_apl[1]);
|
||||
break;
|
||||
case 'katlist':
|
||||
self_opl.setContent_p(self_opl.listKat_o, data_apl[1]);
|
||||
break;
|
||||
default:
|
||||
console.warn('[Application_cl] unbekannte app-Notification: '+data_apl[0]);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user