From 124ecc33353551bc7380d95a71d9b656602441fd Mon Sep 17 00:00:00 2001 From: alan Date: Fri, 1 Nov 2019 16:27:04 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20DEC-10788=20=E6=A0=B9=E6=8D=AE?= =?UTF-8?q?=E8=A7=86=E8=A7=89=E6=96=87=E6=A1=A3=E8=B0=83=E6=95=B4=E7=BB=86?= =?UTF-8?q?=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/text_checker/text_checker.ts | 1 + src/modules/constants/constant.ts | 3 +- .../components/form_item/form_item.ts | 3 +- src/modules/pages/connection/connection.ts | 8 +- .../connection_jdbc/connection_jdbc.ts | 1 + .../connection_jndi/connection_jndi.ts | 11 ++- .../connection/list/list_item/list_item.ts | 83 ++++++++++--------- .../components/form_item/form_item.ts | 5 +- .../maintain/forms/components/form.jdbc.ts | 23 ++++- .../maintain/forms/components/form.jndi.ts | 26 +++++- src/modules/pages/maintain/maintain.ts | 9 +- 11 files changed, 112 insertions(+), 61 deletions(-) diff --git a/src/modules/components/text_checker/text_checker.ts b/src/modules/components/text_checker/text_checker.ts index 430e761..cb30572 100644 --- a/src/modules/components/text_checker/text_checker.ts +++ b/src/modules/components/text_checker/text_checker.ts @@ -36,6 +36,7 @@ export class TextChecker extends BI.Widget { items: [{ el: { type: TextEditor, + cls: 'bi-border-radius', width, allowBlank, value, diff --git a/src/modules/constants/constant.ts b/src/modules/constants/constant.ts index df50774..20f0200 100644 --- a/src/modules/constants/constant.ts +++ b/src/modules/constants/constant.ts @@ -678,8 +678,9 @@ export const DEFAULT_JDBC_POOL = { }; export const CONNECTION_LAYOUT = { - hgap: 15, + hgap: 5, vgap: 15, + labelHeight: 24, }; diff --git a/src/modules/pages/connection/components/form_item/form_item.ts b/src/modules/pages/connection/components/form_item/form_item.ts index 24dacd8..723ecaa 100644 --- a/src/modules/pages/connection/components/form_item/form_item.ts +++ b/src/modules/pages/connection/components/form_item/form_item.ts @@ -7,6 +7,7 @@ export class FormItem extends BI.Widget { name: '', value: '', unit: '', + isBold: true, nameWidth: 140, } @@ -20,7 +21,7 @@ export class FormItem extends BI.Widget { { el: { type: Label, - cls: 'bi-font-bold', + cls: this.options.isBold ? 'bi-font-bold' : '', textAlign: 'left', text: this.options.name, }, diff --git a/src/modules/pages/connection/connection.ts b/src/modules/pages/connection/connection.ts index 6714de9..b7bab2b 100644 --- a/src/modules/pages/connection/connection.ts +++ b/src/modules/pages/connection/connection.ts @@ -49,17 +49,18 @@ export class Connection extends BI.Widget { return { type: Htape, + hgap: 10, items: [ { el: { type: Vtape, cls: 'bi-border-right', + rgap: 10, items: [ { el: { type: VerticalAdapt, cls: 'bi-border-bottom', - lgap: 10, items: [{ type: Button, text: BI.i18nText('Dec-Dcm_Connection_New'), @@ -72,7 +73,7 @@ export class Connection extends BI.Widget { }, { type: ConnectionListXtype, - tgap: 5, + tgap: 10, }, ], }, @@ -91,7 +92,6 @@ export class Connection extends BI.Widget { items: [ { type: Label, - lgap: 5, textAlign: 'left', ref: (_ref: any) => { this.connectionTitleWidget = _ref; @@ -102,7 +102,6 @@ export class Connection extends BI.Widget { type: VerticalAdapt, items: [{ type: Button, - level: 'ignore', invisible: true, text: BI.i18nText('Dec-Dcm_Edit'), ref: (_ref: any) => { @@ -125,7 +124,6 @@ export class Connection extends BI.Widget { }, { type: ListView, - vgap: 15, ref: (_ref: any) => { this.listView = _ref; }, diff --git a/src/modules/pages/connection/connection_jdbc/connection_jdbc.ts b/src/modules/pages/connection/connection_jdbc/connection_jdbc.ts index 1c1c9af..627438d 100644 --- a/src/modules/pages/connection/connection_jdbc/connection_jdbc.ts +++ b/src/modules/pages/connection/connection_jdbc/connection_jdbc.ts @@ -96,6 +96,7 @@ export class ConnectionJdbc extends BI.Widget { }, { type: Vertical, + tgap: -15, vgap, invisible: true, ref: (_ref: any) => { diff --git a/src/modules/pages/connection/connection_jndi/connection_jndi.ts b/src/modules/pages/connection/connection_jndi/connection_jndi.ts index db04856..db99250 100644 --- a/src/modules/pages/connection/connection_jndi/connection_jndi.ts +++ b/src/modules/pages/connection/connection_jndi/connection_jndi.ts @@ -32,7 +32,7 @@ export class ConnectionJdbc extends BI.Widget { }, { type: Htape, - height: 120, + height: 115, items: [ { el: { @@ -50,31 +50,37 @@ export class ConnectionJdbc extends BI.Widget { }, { type: Vertical, - bgap: 10, + bgap: 15, + height: 115, items: [ { type: FormItemXtype, name: 'INTIAL_CONTEXT_FACTORY', nameWidth: 200, + isBold: false, value: contextHashtable['java.naming.factory.initial'], }, { type: FormItemXtype, name: 'PROVIDER_URL', nameWidth: 200, + isBold: false, value: contextHashtable['java.naming.provider.url'], }, { type: FormItemXtype, name: 'SECURITY_PRINCIPAL', nameWidth: 200, + isBold: false, value: contextHashtable['java.naming.security.principal'], }, { type: FormItemXtype, name: 'SECURITY_CREDENTIALS', nameWidth: 200, + isBold: false, value: contextHashtable['java.naming.security.credentials'], + bgap: -15, }, ], }, @@ -102,6 +108,7 @@ export class ConnectionJdbc extends BI.Widget { { type: Vertical, vgap, + tgap: -15, invisible: true, ref: (_ref: any) => { this.advancedSet = _ref; diff --git a/src/modules/pages/connection/list/list_item/list_item.ts b/src/modules/pages/connection/list/list_item/list_item.ts index d4b1ebf..be73a60 100644 --- a/src/modules/pages/connection/list/list_item/list_item.ts +++ b/src/modules/pages/connection/list/list_item/list_item.ts @@ -1,5 +1,5 @@ import { shortcut, store } from '@core/core'; -import { Label, LeftRightVerticalAdapt, IconLabel, IconButton, DownListCombo, SignEditor, Layout } from 'ui'; +import { Label, IconLabel, IconButton, DownListCombo, SignEditor, Layout, Htape, Vertical } from 'ui'; import './list_item.less'; import { ListItemModel, ListItemModelXtype } from './list_item.model'; import { PAGE_INDEX } from '@constants/constant'; @@ -41,20 +41,22 @@ export class ListItem extends BI.BasicButton { const { name, databaseType } = this.options; return { - type: LeftRightVerticalAdapt, - items: { - left: [ - { - type: IconLabel, - cls: 'dcm-link-font icon-size-16', - width: 25, - title: name, - }, + type: Htape, + items: [{ + el: { + type: IconLabel, + cls: 'dcm-link-font icon-size-16', + title: name, + }, + width: 25, + }, { + type: Vertical, + items: [ { type: Label, text: name, - width: 200, textAlign: 'left', + height: 25, title: name, ref: (_ref: any) => { this.nameLabel = _ref; @@ -63,7 +65,6 @@ export class ListItem extends BI.BasicButton { { type: SignEditor, value: name, - width: 200, invisible: !this.model.isEdit, ref: (_ref: any) => { this.nameEditor = _ref; @@ -98,37 +99,37 @@ export class ListItem extends BI.BasicButton { }], }, ], - right: [ - databaseType ? { - type: DownListCombo, - cls: 'link-item-icon', - stopPropagation: true, - hgap: 8, - el: { - type: IconButton, - cls: 'dcm-link-other-font icon-size-16', + }, { + el: databaseType ? { + type: DownListCombo, + cls: 'link-item-icon', + stopPropagation: true, + hgap: 8, + el: { + type: IconButton, + cls: 'dcm-link-other-font icon-size-16', + }, + items: this.renderDownList(), + ref: (_ref: any) => { + this.downListCombo = _ref; + }, + listeners: [{ + eventName: BI.DownListCombo.EVENT_CHANGE, + action: (value: string) => { + this.itemActionCalculate().actionClac(value); }, - items: this.renderDownList(), - ref: (_ref: any) => { - this.downListCombo = _ref; + }, { + eventName: BI.DownListCombo.EVENT_BEFORE_POPUPVIEW, + action: () => { + this.downListCombo.setValue(''); }, - listeners: [{ - eventName: BI.DownListCombo.EVENT_CHANGE, - action: (value: string) => { - this.itemActionCalculate().actionClac(value); - }, - }, { - eventName: BI.DownListCombo.EVENT_BEFORE_POPUPVIEW, - action: () => { - this.downListCombo.setValue(''); - }, - }], - - } : { - type: Layout, - }, - ], - }, + }], + + } : { + type: Layout, + }, + width: 25, + }], }; } diff --git a/src/modules/pages/maintain/components/form_item/form_item.ts b/src/modules/pages/maintain/components/form_item/form_item.ts index 6635e56..159332d 100644 --- a/src/modules/pages/maintain/components/form_item/form_item.ts +++ b/src/modules/pages/maintain/components/form_item/form_item.ts @@ -1,5 +1,6 @@ import { shortcut } from '@core/core'; import { Label, Left } from 'ui'; +import { CONNECTION_LAYOUT } from '@constants/constant'; export const FormItemXtype = 'dec.dcm.Maintain_form_item'; @shortcut(FormItemXtype) export class FormItem extends BI.Widget { @@ -7,6 +8,7 @@ export class FormItem extends BI.Widget { name: '', forms: '', nameWidth: 140, + isBold: true, } render () { @@ -15,9 +17,10 @@ export class FormItem extends BI.Widget { items: [ { type: Label, - cls: 'bi-font-bold', + cls: this.options.isBold ? 'bi-font-bold' : '', width: this.options.nameWidth, textAlign: 'left', + height: CONNECTION_LAYOUT.labelHeight, text: this.options.name, }, ...this.options.forms, diff --git a/src/modules/pages/maintain/forms/components/form.jdbc.ts b/src/modules/pages/maintain/forms/components/form.jdbc.ts index d3fa953..6ba9523 100644 --- a/src/modules/pages/maintain/forms/components/form.jdbc.ts +++ b/src/modules/pages/maintain/forms/components/form.jdbc.ts @@ -1,5 +1,5 @@ import { shortcut } from '@core/core'; -import { Vertical, TextEditor, TextValueCombo, Label, TextAreaEditor, Editor, EdirotIconCheckCombo, Left, TextButton } from 'ui'; +import { Vertical, TextEditor, TextValueCombo, Label, TextAreaEditor, Editor, EdirotIconCheckCombo, Left, TextButton, Layout } from 'ui'; import { CollapseXtype, EVENT_CHANGE } from 'src/modules/components/collapse/collapse'; import { FormItemXtype } from '../../components/form_item/form_item'; import { Connection, ConnectionJDBC, ConnectionPoolJDBC } from 'src/modules/crud/crud.typings'; @@ -114,6 +114,7 @@ export class FormJdbc extends BI.Widget { name: BI.i18nText('Dec-Dcm_Connection_Form_Database_Name'), forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, watermark: BI.i18nText('Dec-Dcm_Connection_Form_Database_Name'), @@ -134,6 +135,7 @@ export class FormJdbc extends BI.Widget { name: BI.i18nText('Dec-Dcm_Connection_Form_Host'), forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: host, @@ -219,6 +221,7 @@ export class FormJdbc extends BI.Widget { }, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: user, @@ -237,7 +240,7 @@ export class FormJdbc extends BI.Widget { }, forms: [{ type: Editor, - cls: 'bi-border', + cls: 'bi-border bi-border-radius', width: 300, height: 20, allowBlank: true, @@ -258,6 +261,7 @@ export class FormJdbc extends BI.Widget { }, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: principal, @@ -276,7 +280,7 @@ export class FormJdbc extends BI.Widget { }, forms: [{ type: Editor, - cls: 'bi-border', + cls: 'bi-border bi-border-radius', width: 300, height: 20, allowBlank: true, @@ -313,6 +317,7 @@ export class FormJdbc extends BI.Widget { { type: FormItemXtype, invisible: !databaseType.hasSchema, + height: 64, name: BI.i18nText('Dec-Dcm_Connection_Form_Pattern'), forms: [{ type: Vertical, @@ -344,11 +349,17 @@ export class FormJdbc extends BI.Widget { }], }], }, + { + type: Layout, + cls: 'bi-border-top', + bgap: 8, + }, { type: FormItemXtype, name: BI.i18nText('Dec-Dcm_Connection_Form_Database_URL'), forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: url, @@ -383,6 +394,7 @@ export class FormJdbc extends BI.Widget { { type: Vertical, vgap, + tgap: -15, invisible: true, ref: (_ref: any) => { this.advancedSet = _ref; @@ -486,6 +498,7 @@ export class FormJdbc extends BI.Widget { { type: Label, lgap: 5, + height: CONNECTION_LAYOUT.labelHeight, text: BI.i18nText('Dec-Dcm_Millisecond'), }, ], @@ -495,7 +508,7 @@ export class FormJdbc extends BI.Widget { name: BI.i18nText('Dec-Dcm_Connection_Form_SQL_Validation_Query'), forms: [{ type: TextAreaEditor, - cls: 'bi-border', + cls: 'bi-border bi-border-radius', allowBlank: true, watermark: BI.i18nText('Dec-Dcm_Connection_Form_Place_Input'), value: validationQuery, @@ -573,6 +586,7 @@ export class FormJdbc extends BI.Widget { { type: Label, lgap: 5, + height: CONNECTION_LAYOUT.labelHeight, text: BI.i18nText('Dec-Dcm_Millisecond'), }, ], @@ -618,6 +632,7 @@ export class FormJdbc extends BI.Widget { { type: Label, lgap: 5, + height: CONNECTION_LAYOUT.labelHeight, text: BI.i18nText('BI-Basic_Seconds'), }, ], diff --git a/src/modules/pages/maintain/forms/components/form.jndi.ts b/src/modules/pages/maintain/forms/components/form.jndi.ts index 5be5737..3ad3cc5 100644 --- a/src/modules/pages/maintain/forms/components/form.jndi.ts +++ b/src/modules/pages/maintain/forms/components/form.jndi.ts @@ -64,6 +64,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: jndiName, @@ -74,7 +75,7 @@ export class FormJndi extends BI.Widget { }, { type: Htape, - height: 180, + height: 175, items: [ { el: { @@ -92,12 +93,14 @@ export class FormJndi extends BI.Widget { }, { type: Vertical, - bgap: 10, + bgap: 15, + height: 175, items: [ { type: FormItemXtype, name: 'INTIAL_CONTEXT_FACTORY', nameWidth: 200, + isBold: false, forms: [{ type: EdirotIconCheckCombo, width: 300, @@ -124,9 +127,11 @@ export class FormJndi extends BI.Widget { { type: FormItemXtype, name: 'PROVIDER_URL', + isBold: false, nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.provider.url'], @@ -138,9 +143,11 @@ export class FormJndi extends BI.Widget { { type: FormItemXtype, name: 'SECURITY_PRINCIPAL', + isBold: false, nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.security.principal'], @@ -152,9 +159,11 @@ export class FormJndi extends BI.Widget { { type: FormItemXtype, name: 'SECURITY_CREDENTIALS', + isBold: false, nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.security.credentials'], @@ -165,6 +174,7 @@ export class FormJndi extends BI.Widget { }, { type: Label, + bgap: -15, cls: 'bi-tips', textAlign: 'left', text: BI.i18nText('Dec-Dcm_Connection_JNDI_Warning'), @@ -203,6 +213,7 @@ export class FormJndi extends BI.Widget { { type: Vertical, vgap, + tgap: -15, invisible: true, ref: (_ref: any) => { this.advancedSet = _ref; @@ -214,6 +225,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.factory.object'], @@ -228,6 +240,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.factory.state'], @@ -242,6 +255,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.factory.url.pkgs'], @@ -256,6 +270,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.dns.url'], @@ -270,6 +285,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.authoritative'], @@ -284,6 +300,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.batchsize'], @@ -298,6 +315,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.referral'], @@ -312,6 +330,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.security.protocol'], @@ -326,6 +345,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.security.authentication'], @@ -340,6 +360,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.language'], @@ -354,6 +375,7 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, + cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.applet'], diff --git a/src/modules/pages/maintain/maintain.ts b/src/modules/pages/maintain/maintain.ts index 526dd10..7f25441 100644 --- a/src/modules/pages/maintain/maintain.ts +++ b/src/modules/pages/maintain/maintain.ts @@ -25,17 +25,18 @@ export class Maintain extends BI.Widget { return { type: Vtape, - hgap: 10, - vgap: 10, + hgap: 5, items: [ { type: VerticalAdapt, cls: 'bi-border-bottom', + height: 40, + hgap: 5, items: [ { type: IconButton, - hgap: 5, cls: 'dcm-back-font', + height: 15, invisible: this.model.isCopy || isEdit, handler: () => { this.store.setPageIndex(PAGE_INDEX.DATEBASE); @@ -44,9 +45,9 @@ export class Maintain extends BI.Widget { { type: Label, text: titleText, + height: 15, }, ], - height: 40, }, { type: ListView, From ac77e237121735f8d3d73f423ddc2e1a2582bc3f Mon Sep 17 00:00:00 2001 From: alan Date: Fri, 1 Nov 2019 16:34:23 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E5=8E=BB=E6=8E=89=20bi-border-radiu?= =?UTF-8?q?s=20=E6=94=B9=E4=B8=BA=E5=9C=A8fineui=E4=B8=AD=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/text_checker/text_checker.ts | 1 - .../pages/maintain/forms/components/form.jdbc.ts | 11 +++-------- .../pages/maintain/forms/components/form.jndi.ts | 15 --------------- 3 files changed, 3 insertions(+), 24 deletions(-) diff --git a/src/modules/components/text_checker/text_checker.ts b/src/modules/components/text_checker/text_checker.ts index cb30572..430e761 100644 --- a/src/modules/components/text_checker/text_checker.ts +++ b/src/modules/components/text_checker/text_checker.ts @@ -36,7 +36,6 @@ export class TextChecker extends BI.Widget { items: [{ el: { type: TextEditor, - cls: 'bi-border-radius', width, allowBlank, value, diff --git a/src/modules/pages/maintain/forms/components/form.jdbc.ts b/src/modules/pages/maintain/forms/components/form.jdbc.ts index 6ba9523..972ebc3 100644 --- a/src/modules/pages/maintain/forms/components/form.jdbc.ts +++ b/src/modules/pages/maintain/forms/components/form.jdbc.ts @@ -114,7 +114,6 @@ export class FormJdbc extends BI.Widget { name: BI.i18nText('Dec-Dcm_Connection_Form_Database_Name'), forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, watermark: BI.i18nText('Dec-Dcm_Connection_Form_Database_Name'), @@ -135,7 +134,6 @@ export class FormJdbc extends BI.Widget { name: BI.i18nText('Dec-Dcm_Connection_Form_Host'), forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: host, @@ -221,7 +219,6 @@ export class FormJdbc extends BI.Widget { }, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: user, @@ -240,7 +237,7 @@ export class FormJdbc extends BI.Widget { }, forms: [{ type: Editor, - cls: 'bi-border bi-border-radius', + cls: 'bi-border', width: 300, height: 20, allowBlank: true, @@ -261,7 +258,6 @@ export class FormJdbc extends BI.Widget { }, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: principal, @@ -280,7 +276,7 @@ export class FormJdbc extends BI.Widget { }, forms: [{ type: Editor, - cls: 'bi-border bi-border-radius', + cls: 'bi-border', width: 300, height: 20, allowBlank: true, @@ -359,7 +355,6 @@ export class FormJdbc extends BI.Widget { name: BI.i18nText('Dec-Dcm_Connection_Form_Database_URL'), forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: url, @@ -508,7 +503,7 @@ export class FormJdbc extends BI.Widget { name: BI.i18nText('Dec-Dcm_Connection_Form_SQL_Validation_Query'), forms: [{ type: TextAreaEditor, - cls: 'bi-border bi-border-radius', + cls: 'bi-border', allowBlank: true, watermark: BI.i18nText('Dec-Dcm_Connection_Form_Place_Input'), value: validationQuery, diff --git a/src/modules/pages/maintain/forms/components/form.jndi.ts b/src/modules/pages/maintain/forms/components/form.jndi.ts index 3ad3cc5..360e3bb 100644 --- a/src/modules/pages/maintain/forms/components/form.jndi.ts +++ b/src/modules/pages/maintain/forms/components/form.jndi.ts @@ -64,7 +64,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: jndiName, @@ -131,7 +130,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.provider.url'], @@ -147,7 +145,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.security.principal'], @@ -163,7 +160,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.security.credentials'], @@ -225,7 +221,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.factory.object'], @@ -240,7 +235,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.factory.state'], @@ -255,7 +249,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.factory.url.pkgs'], @@ -270,7 +263,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.dns.url'], @@ -285,7 +277,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.authoritative'], @@ -300,7 +291,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.batchsize'], @@ -315,7 +305,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.referral'], @@ -330,7 +319,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.security.protocol'], @@ -345,7 +333,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.security.authentication'], @@ -360,7 +347,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.language'], @@ -375,7 +361,6 @@ export class FormJndi extends BI.Widget { nameWidth: 200, forms: [{ type: TextEditor, - cls: 'bi-border-radius', width: 300, allowBlank: true, value: contextHashtable['java.naming.applet'],