@@ -534,6 +534,8 @@ function loadChangeTable(selectSystem, selectCountry, selectEnvironment) {
534
534
var configurations = new TableConfigurationsServerSide ( "lastChangeTable" , contentUrl , "contentTable" , aoColumnsFuncChange ( "lastChangeTable" ) , [ 0 , "desc" ] ) ;
535
535
536
536
var table = createDataTableWithPermissions ( configurations , undefined , "#lastChangeList" , undefined , true ) ;
537
+ refreshPopoverDocumentation ( "lastChangeList" ) ;
538
+
537
539
return table ;
538
540
}
539
541
@@ -549,6 +551,7 @@ function loadEventTable(selectSystem, selectCountry, selectEnvironment) {
549
551
var configurations = new TableConfigurationsServerSide ( "lastEventTable" , contentUrl , "contentTable" , aoColumnsFuncEvent ( "lastEventTable" ) , [ 0 , "desc" ] ) ;
550
552
551
553
var table = createDataTableWithPermissions ( configurations , undefined , "#lastEventList" , undefined , true ) ;
554
+ refreshPopoverDocumentation ( "lastEventList" ) ;
552
555
return table ;
553
556
}
554
557
@@ -560,7 +563,9 @@ function loadDatabaseTable(selectSystem, selectCountry, selectEnvironment) {
560
563
obj . toDelete = false ;
561
564
appendDatabaseRow ( obj ) ;
562
565
} ) ;
566
+ refreshPopoverDocumentation ( "listPanelDatabase" ) ;
563
567
} ) . fail ( handleErrorAjaxAfterTimeout ) ;
568
+
564
569
}
565
570
566
571
function appendDatabaseRow ( dtb ) {
@@ -618,6 +623,7 @@ function addNewDatabaseRow() {
618
623
toDelete : false
619
624
} ;
620
625
appendDatabaseRow ( newDatabase ) ;
626
+ refreshPopoverDocumentation ( "listPanelDatabase" ) ;
621
627
}
622
628
623
629
function loadApplicationTable ( selectSystem , selectCountry , selectEnvironment ) {
@@ -628,6 +634,7 @@ function loadApplicationTable(selectSystem, selectCountry, selectEnvironment) {
628
634
obj . toDelete = false ;
629
635
appendApplicationRow ( obj , selectSystem ) ;
630
636
} ) ;
637
+ refreshPopoverDocumentation ( "listPanelApplication" ) ;
631
638
} ) . fail ( handleErrorAjaxAfterTimeout ) ;
632
639
}
633
640
@@ -679,13 +686,13 @@ function appendApplicationRow(app, selectSystem) {
679
686
var secret2Name = $ ( "<div class='form-group col-sm-4'></div>" ) . append ( "<label for='secret2'>" + doc . getDocOnline ( "countryenvironmentparameters" , "secret2" ) + "</label>" ) . append ( secret2Input ) ;
680
687
var mobileActivityName = $ ( "<div class='form-group col-sm-6'></div>" ) . append ( "<label for='var4'>" + doc . getDocOnline ( "countryenvironmentparameters" , "mobileActivity" ) + "</label>" ) . append ( mobileActivity ) ;
681
688
var mobilePackageName = $ ( "<div class='form-group col-sm-6'></div>" ) . append ( "<label for='var4'>" + doc . getDocOnline ( "countryenvironmentparameters" , "mobilePackage" ) + "</label>" ) . append ( mobilePackage ) ;
682
-
689
+
683
690
var drow1 = $ ( "<div class='row'></div>" ) . append ( activeName ) . append ( ipName ) . append ( urlName ) . append ( poolSizeName ) ;
684
691
var drow2 = $ ( "<div class='row'></div>" ) . append ( var1Name ) . append ( var2Name ) . append ( secret1Name ) . append ( expandName ) ;
685
692
var drow3 = $ ( "<div class='row'></div>" ) . append ( loginName ) . append ( domainName ) ;
686
693
var drow4 = $ ( "<div class='row'></div>" ) . append ( var3Name ) . append ( var4Name ) . append ( secret2Name ) ;
687
694
var drow5 = $ ( "<div class='row'></div>" ) . append ( mobileActivityName ) . append ( mobilePackageName ) ;
688
-
695
+
689
696
var panelExtra = $ ( "<div class='collapse' id='col" + nbRow + "'></div>" ) . append ( drow3 ) . append ( drow4 ) . append ( drow5 ) ;
690
697
691
698
var td3 = $ ( "<td></td>" ) . append ( drow1 ) . append ( drow2 ) . append ( panelExtra ) ;
@@ -773,6 +780,7 @@ function addNewApplicationRow(selectSystem) {
773
780
toDelete : false
774
781
} ;
775
782
appendApplicationRow ( newApplication , selectSystem ) ;
783
+ refreshPopoverDocumentation ( "listPanelApplication" ) ;
776
784
}
777
785
778
786
function loadDependenciesTable ( selectSystem , selectCountry , selectEnvironment ) {
@@ -784,6 +792,7 @@ function loadDependenciesTable(selectSystem, selectCountry, selectEnvironment) {
784
792
appendDependenciesRow ( obj ) ;
785
793
} ) ;
786
794
} ) . fail ( handleErrorAjaxAfterTimeout ) ;
795
+ refreshPopoverDocumentation ( "listPanelDependencies" ) ;
787
796
}
788
797
789
798
function appendDependenciesRow ( env ) {
@@ -838,6 +847,7 @@ function addNewDependenciesRow() {
838
847
toDelete : false
839
848
} ;
840
849
appendDependenciesRow ( newDependencies ) ;
850
+ refreshPopoverDocumentation ( "listPanelDependencies" ) ;
841
851
}
842
852
843
853
function loadDeployTypeTable ( selectSystem , selectCountry , selectEnvironment ) {
0 commit comments