From 59a4c07c95e4f043e131717e9f169dd090d76363 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 14 Jan 2021 16:39:44 +0800 Subject: [PATCH] change address to a textarea --- DataObjects/Core_template.php | 4 ++-- Pman.Dialog.CoreCompanies.bjs | 14 +++++++------- Pman.Dialog.CoreCompanies.js | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/DataObjects/Core_template.php b/DataObjects/Core_template.php index 03f9b97c..a32b4b84 100644 --- a/DataObjects/Core_template.php +++ b/DataObjects/Core_template.php @@ -415,8 +415,8 @@ WHERE ( } putenv("LANGUAGE=$lang"); - if ($lang != 'en' && !setlocale(LC_ALL, $lang)) { - if (!setlocale(LC_ALL, $lang.'.UTF8')) { + if ($lang != 'en') { + if (!setlocale(LC_ALL, $lang.'.UTF-8')) { $ff->page->jerr("Language is not available {$lang}"); } } diff --git a/Pman.Dialog.CoreCompanies.bjs b/Pman.Dialog.CoreCompanies.bjs index 70ea94ec..ef6cffb8 100644 --- a/Pman.Dialog.CoreCompanies.bjs +++ b/Pman.Dialog.CoreCompanies.bjs @@ -91,8 +91,8 @@ { "listeners" : { "actionfailed" : "function(f, act) {\n _this.dialog.el.unmask();\n // error msg???\n Pman.standardActionFailed(f,act);\n \n}", - "actioncomplete" : "function(f, act) {\n _this.dialog.el.unmask();\n //console.log('load completed'); \n // error messages?????\n if(act.type == 'setdata'){\n this.load({ method: 'GET', params: { '_id' : _this.data.id }});\n return;\n }\n \n if (act.type == 'load') {\n _this.data = act.result.data;\n var meth = _this.data.comptype == 'OWNER' ? 'disable' : 'enable';\n \n \n if (_this.form.findField('comptype')) {\n _this.form.findField('comptype')[meth]();\n }\n \n // _this.loaded();\n return;\n }\n \n \n if (act.type == 'submit') { // only submitted here if we are \n _this.dialog.hide();\n \n if (_this.callback) {\n _this.callback.call(this, act.result.data);\n }\n return; \n }\n // unmask?? \n}", - "rendered" : "function (form)\n{\n _this.form = form;\n}" + "rendered" : "function (form)\n{\n _this.form = form;\n}", + "actioncomplete" : "function(f, act) {\n _this.dialog.el.unmask();\n //console.log('load completed'); \n // error messages?????\n if(act.type == 'setdata'){\n this.load({ method: 'GET', params: { '_id' : _this.data.id }});\n return;\n }\n \n if (act.type == 'load') {\n _this.data = act.result.data;\n var meth = _this.data.comptype == 'OWNER' ? 'disable' : 'enable';\n \n \n if (_this.form.findField('comptype')) {\n _this.form.findField('comptype')[meth]();\n }\n \n // _this.loaded();\n return;\n }\n \n \n if (act.type == 'submit') { // only submitted here if we are \n _this.dialog.hide();\n \n if (_this.callback) {\n _this.callback.call(this, act.result.data);\n }\n return; \n }\n // unmask?? \n}" }, "$ url" : "baseURL + '/Roo/core_company.php'", "fileUpload" : true, @@ -102,8 +102,8 @@ "items" : [ { "xtype" : "Column", - "width" : 500, "$ xns" : "Roo.form", + "width" : 500, "items" : [ { "fieldLabel" : "Company ID (for filing Ref.)", @@ -118,9 +118,9 @@ "listeners" : { "render" : "function (_self)\n{\n _this.etypeCombo = _self;\n}" }, + "alwaysQuery" : true, "listWidth" : 250, "Boolean allowBlank" : false, - "alwaysQuery" : true, "triggerAction" : "all", "fieldLabel" : "Type", "forceSelection" : true, @@ -153,8 +153,8 @@ "items" : [ { "$ url" : "baseURL + '/Roo/core_enum.php'", - "xtype" : "HttpProxy", "method" : "GET", + "xtype" : "HttpProxy", "$ xns" : "Roo.data", "* prop" : "proxy" }, @@ -218,7 +218,7 @@ }, { "fieldLabel" : "Address", - "xtype" : "TextField", + "xtype" : "TextArea", "allowBlank" : true, "width" : 300, "$ xns" : "Roo.form", @@ -251,8 +251,8 @@ }, { "fieldLabel" : "Logo Image", - "xtype" : "DisplayField", "style" : "border: 1px solid #ccc;", + "xtype" : "DisplayField", "$ valueRenderer" : "function(v) {\n //var vp = v ? v : 'Companies:' + _this.data.id + ':-LOGO';\n if (!v) {\n return \"No Image Available\" + '
';\n }\n return String.format('', \n baseURL + '/Images/Thumb/150x150/' + v + '/logo.jpg',\n baseURL + '/Images/'+v+'/logo.jpg' // fixme - put escaped company name..\n );\n}", "icon" : "rootURL + 'images/default/dd/drop-add.gif'", "width" : 170, diff --git a/Pman.Dialog.CoreCompanies.js b/Pman.Dialog.CoreCompanies.js index e44744a9..15ac8182 100644 --- a/Pman.Dialog.CoreCompanies.js +++ b/Pman.Dialog.CoreCompanies.js @@ -356,7 +356,7 @@ Pman.Dialog.CoreCompanies = { '|xns' : 'Roo.form' }, { - xtype : 'TextField', + xtype : 'TextArea', allowBlank : true, fieldLabel : _this._strings['dd7bf230fde8d4836917806aff6a6b27'] /* Address */, name : 'address', -- 2.39.2