PMCORE-3812:Ada compliant in Extjs

Code Style

gulliver

dialog

CR

Corrections

CR 2
This commit is contained in:
Fabio Guachalla
2022-05-13 12:43:49 -04:00
parent 6130065eac
commit b507788b33
14 changed files with 293 additions and 58 deletions

View File

@@ -2784,8 +2784,17 @@ Ext.onReady ( function() {
}
});
// Add the additional 'advanced' VTypes -- [End]
var i;
if (document.getElementsByTagName('input')) {
for (i = 0; i < document.getElementsByTagName('input').length; i+= 1) {
document.getElementsByTagName('input')[i].ariaLabel = document.getElementsByTagName('input')[i].id;
}
}
if (document.getElementsByTagName('button')) {
for (i = 0; i < document.getElementsByTagName('button').length; i+= 1) {
document.getElementsByTagName('button')[i].ariaLabel = document.getElementsByTagName('button')[i].id;
}
}
});
function msgBox(title, msg, type){