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

@@ -1635,14 +1635,16 @@ function newFolder()
$formNewFolder["items"]= array();
$field=array();
$field["xtype"]= "label";
$field["xtype"]= "textfield";
$field["fieldLabel"]= G::LoadTranslation('ID_CREATE_FOLDER_PATH_FOLDER');
$field["name"]= "form[FOLDER_PATH]";
$field["id"]= "form[FOLDER_PATH]";
$field["name"]= "FOLDER_PATH";
$field["id"]= "FOLDER_PATH";
$field["width"]=175;
$field["allowBlank"]=false;
$field["value"]=$folderPath;
$field["text"]=$folderPath;
$field["readOnly"]= true;
$field["style"] = "{'border': 'none'}";
$formNewFolder["items"][]= $field;
$field=array();