diff --git a/CHANGELOG.md b/CHANGELOG.md index 519e9c03..eadce7ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,26 @@ # 4.0.0 -### Changes +## Changes - **all:** Updated dependencies - **cli:** The `experimental-login` command is now `login`. [See here](https://github.com/infor-cloud/m3-h5-sdk/issues/55#issuecomment-651713612) for more. - **samples:** Now using Highlight.js 10 in samples, fixed an issue where highlighting was not properly initialized. -### Updated Dependencies +## Updated Dependencies - IDS Enterprise Components 9.1 - Angular 11 - Typescript 4 - Highlight.js 10 +## Upgrading from version 3 +1. Install the latest CLI: +``` +npm i -g @infor-up/m3-odin-cli@latest +``` +2. Upgrade existing project dependencies (assuming IDS & Angular is used): +``` +ng update @infor-up/m3-odin @infor-up/m3-odin-angular @angular/cli @angular/core ids-enterprise-ng codelyzer +``` + # 3.0.2 ## Bug fixes * **core:** `MIResponse` properly handles partial errors [#77](https://github.com/infor-cloud/m3-h5-sdk/issues/75) @@ -20,7 +30,7 @@ # 3.0.1 This release contains major updates to dependencies (TypeScript, Angular, IDS Enterprise Components and more). It also contains a new (experimental) way of signing in to multi-tenant environments during development. -### Upgrading +## Upgrading Existing projects can be updated with `ng update`. The process may differ depending on how the project is set up, and what other dependencies are installed. For a typical project using the IDS Angular Components, the following should do most of the work: ```bash @@ -35,33 +45,33 @@ Further update instructions are given by the `ng update` command and https://upd You may also need to install NodeJS 12.x (LTS). -### Features +## Features * **cli:** New `experimental-login` command for multi-tenant login * **angular:** Possibility to configure `IonApiService` using the injectable `IonApiConfig` -### Bug fixes +## Bug fixes * **angular:** `IonApiService` no longer uses `XMLHttpRequest.withCredentials` by default. This was causing CORS issues in some environments [#41](https://github.com/infor-cloud/m3-h5-sdk/issues/41) * **cli:** The development proxy will not forward CSRF requests and headers when proxying M3 requests to ION API. * **cli:** The development proxy will modify the Origin header so that POST requests are accepted by ION API. -### Dependency updates +## Dependency updates * **cli:** Upgrade to Angular 9 * **cli:** Requires NodeJS 12.x (LTS) * **cli:** No longer uses `node-sass`, which was not working on newer NodeJS versions. -### BREAKING CHANGES +## BREAKING CHANGES There have been major version updates to many dependencies. These require NodeJS 12.x (LTS) to be installed. The IDS Angular Components require changes to `angular.json` to properly fetch assets, styles and scripts. New projects will not need to be changed, but older ones do. See **Upgrading** section above. # 2.2.1 -### Bug fixes +## Bug fixes * **core:** Properly set CurrentCompany, CurrentDivision & CurrentLanguage on UserContext. Fixes [#27](https://github.com/infor-cloud/m3-h5-sdk/issues/27) and [#7](https://github.com/infor-cloud/m3-h5-sdk/issues/7) # 2.2.0 -### Features +## Features * **core:** Include CSRF token in requests to /m3api-rest. *This will be required in future versions of M3*. If you for any reason want to opt out from this feature, you can do so by setting the `IMIRequest.enableCsrf` property to `false`: diff --git a/cli/boilerplate/angular-material/package.json b/cli/boilerplate/angular-material/package.json index 5404180f..0f28818c 100644 --- a/cli/boilerplate/angular-material/package.json +++ b/cli/boilerplate/angular-material/package.json @@ -1,7 +1,7 @@ { "dependencies": { - "@infor-up/m3-odin": "4.0.0-next.2", - "@infor-up/m3-odin-angular": "4.0.0-next.2", + "@infor-up/m3-odin": "4.0.0", + "@infor-up/m3-odin-angular": "4.0.0", "@angular/cdk": "^11.0.3", "@angular/material": "^11.0.3" }, diff --git a/cli/boilerplate/angular-soho/package.json b/cli/boilerplate/angular-soho/package.json index 03faa8ba..5adc1fd1 100644 --- a/cli/boilerplate/angular-soho/package.json +++ b/cli/boilerplate/angular-soho/package.json @@ -1,7 +1,7 @@ { "dependencies": { - "@infor-up/m3-odin": "4.0.0-next.2", - "@infor-up/m3-odin-angular": "4.0.0-next.2", + "@infor-up/m3-odin": "4.0.0", + "@infor-up/m3-odin-angular": "4.0.0", "ids-enterprise-ng": "~9.1.0" }, "devDependencies": {} diff --git a/cli/boilerplate/angular/package.json b/cli/boilerplate/angular/package.json index ea7466b5..61868b4f 100644 --- a/cli/boilerplate/angular/package.json +++ b/cli/boilerplate/angular/package.json @@ -1,7 +1,7 @@ { "dependencies": { - "@infor-up/m3-odin": "4.0.0-next.2", - "@infor-up/m3-odin-angular": "4.0.0-next.2" + "@infor-up/m3-odin": "4.0.0", + "@infor-up/m3-odin-angular": "4.0.0" }, "devDependencies": {} } \ No newline at end of file diff --git a/cli/boilerplate/basic-material/package.json b/cli/boilerplate/basic-material/package.json index 02b70823..e98d0b58 100644 --- a/cli/boilerplate/basic-material/package.json +++ b/cli/boilerplate/basic-material/package.json @@ -11,8 +11,8 @@ "author": "", "license": "UNLICENSED", "devDependencies": { - "@infor-up/m3-odin-cli": "4.0.0-next.2", - "@infor-up/m3-odin": "4.0.0-next.2", + "@infor-up/m3-odin-cli": "4.0.0", + "@infor-up/m3-odin": "4.0.0", "@types/material-components-web": "^0.26.0", "rxjs": "^6.5.0", "typescript": "^3.8.0" diff --git a/cli/boilerplate/basic/package.json b/cli/boilerplate/basic/package.json index 11878c64..52f6bbe8 100644 --- a/cli/boilerplate/basic/package.json +++ b/cli/boilerplate/basic/package.json @@ -11,8 +11,8 @@ "author": "", "license": "UNLICENSED", "devDependencies": { - "@infor-up/m3-odin-cli": "4.0.0-next.2", - "@infor-up/m3-odin": "4.0.0-next.2", + "@infor-up/m3-odin-cli": "4.0.0", + "@infor-up/m3-odin": "4.0.0", "rxjs": "^6.5.0", "typescript": "^3.8.0" } diff --git a/cli/package-lock.json b/cli/package-lock.json index 3abc63cc..8516e463 100644 --- a/cli/package-lock.json +++ b/cli/package-lock.json @@ -1,6 +1,6 @@ { "name": "@infor-up/m3-odin-cli", - "version": "4.0.0-next.2", + "version": "4.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/cli/package.json b/cli/package.json index 4fc1bf04..31d49eb3 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@infor-up/m3-odin-cli", - "version": "4.0.0-next.2", + "version": "4.0.0", "description": "Odin CLI", "scripts": { "build": "tsc", diff --git a/m3-odin/docs/classes/ajaxhttpservice.html b/m3-odin/docs/classes/ajaxhttpservice.html index 2433b5d7..c482e2c5 100644 --- a/m3-odin/docs/classes/ajaxhttpservice.html +++ b/m3-odin/docs/classes/ajaxhttpservice.html @@ -3,8 +3,8 @@
-Implementation of IErrorState.hasError
Inherited from ErrorState.hasError
Protected isDebug
Protected logDebug
Protected logError
Protected logInfo
Protected logWarning
Inherited from CoreBase.logWarning
-- Defined in projects/infor-up/m3-odin/base.ts:89
+ - Defined in projects/infor-up/m3-odin/base.ts:89
constructor
Returns ApplicationService
@@ -210,7 +210,7 @@isH5
launch
Static contains
Static containsByProperty
@@ -190,7 +190,7 @@
Static filterByPredicate
@@ -245,7 +245,7 @@
@@ -306,7 +306,7 @@
@@ -367,7 +367,7 @@
@@ -429,7 +429,7 @@
@@ -463,7 +463,7 @@
@@ -518,7 +518,7 @@
@@ -552,7 +552,7 @@
@@ -581,7 +581,7 @@
@@ -615,7 +615,7 @@
@@ -646,7 +646,7 @@
Static find
Static findAll
Static indexByPredicate
Static indexByProperty
Static itemByPredicate
Static itemByProperty
Static last
Static move
Static remove
Static removeByPredicate
@@ -708,7 +708,7 @@
@@ -752,7 +752,7 @@
@@ -796,7 +796,7 @@
diff --git a/m3-odin/docs/classes/bookmark.html b/m3-odin/docs/classes/bookmark.html
index 08ad559a..b8e7378e 100644
--- a/m3-odin/docs/classes/bookmark.html
+++ b/m3-odin/docs/classes/bookmark.html
@@ -3,8 +3,8 @@
- Bookmark | M3 Odin - 3.0.2
-
+ Bookmark | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -108,7 +108,7 @@
Button | M3 Odin - 3.0.2
-
+ Button | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -149,7 +149,7 @@ arguments: string
@@ -175,7 +175,7 @@ command: string
@@ -185,7 +185,7 @@ commandValue: string
@@ -196,7 +196,7 @@
@@ -234,7 +234,7 @@
@@ -283,7 +283,7 @@
@@ -321,7 +321,7 @@ progId: string
@@ -353,7 +353,7 @@ CheckBox | M3 Odin - 3.0.2
-
+ CheckBox | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -146,7 +146,7 @@
@@ -200,7 +200,7 @@ isChecked: boolean
@@ -217,7 +217,7 @@
@@ -266,7 +266,7 @@
@@ -304,7 +304,7 @@ ComboBox | M3 Odin - 3.0.2
-
+ ComboBox | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -151,7 +151,7 @@ command: string
@@ -177,7 +177,7 @@ commandValue: string
@@ -188,7 +188,7 @@
@@ -225,7 +225,7 @@ isEditable: boolean
@@ -236,7 +236,7 @@ isPosition: boolean
@@ -262,7 +262,7 @@
@@ -300,7 +300,7 @@ items: ComboBoxItem[] = []
@@ -321,7 +321,7 @@
@@ -348,7 +348,7 @@ selected: ComboBoxItem
@@ -402,7 +402,7 @@ ComboBoxItem | M3 Odin - 3.0.2
-
+ ComboBoxItem | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -107,7 +107,7 @@ isSelected: boolean
@@ -117,7 +117,7 @@ name: string
@@ -127,7 +127,7 @@ text: string
@@ -137,7 +137,7 @@ value: string
diff --git a/m3-odin/docs/classes/constraint.html b/m3-odin/docs/classes/constraint.html
index a3c54c03..abca32d8 100644
--- a/m3-odin/docs/classes/constraint.html
+++ b/m3-odin/docs/classes/constraint.html
@@ -3,8 +3,8 @@
- Constraint | M3 Odin - 3.0.2
-
+ Constraint | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -107,7 +107,7 @@ isNumeric: boolean = false
@@ -122,7 +122,7 @@ isUpper: boolean = false
@@ -137,7 +137,7 @@ maxDecimals: number = 0
@@ -152,7 +152,7 @@ maxLength: number = 0
diff --git a/m3-odin/docs/classes/controltype.html b/m3-odin/docs/classes/controltype.html
index 03cb472e..48c41f44 100644
--- a/m3-odin/docs/classes/controltype.html
+++ b/m3-odin/docs/classes/controltype.html
@@ -3,8 +3,8 @@
- ControlType | M3 Odin - 3.0.2
-
+ ControlType | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -118,7 +118,7 @@ button: number = 7
@@ -128,7 +128,7 @@ checkBox: number = 3
@@ -138,7 +138,7 @@ comboBox: number = 4
@@ -148,7 +148,7 @@ datePicker: number = 5
@@ -158,7 +158,7 @@ groupBox: number = 6
@@ -168,7 +168,7 @@ label: number = 1
@@ -178,7 +178,7 @@ list: number = 8
@@ -188,7 +188,7 @@ listColumn: number = 9
@@ -198,7 +198,7 @@ textBox: number = 2
@@ -215,7 +215,7 @@
CoreBase | M3 Odin - 3.0.2
-
+ CoreBase | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -154,7 +154,7 @@
@@ -192,7 +192,7 @@
@@ -214,7 +214,7 @@
@@ -237,7 +237,7 @@
@@ -274,7 +274,7 @@
@@ -311,7 +311,7 @@
@@ -342,7 +342,7 @@
diff --git a/m3-odin/docs/classes/coreutil.html b/m3-odin/docs/classes/coreutil.html
index a679d6c1..085d3fd1 100644
--- a/m3-odin/docs/classes/coreutil.html
+++ b/m3-odin/docs/classes/coreutil.html
@@ -3,8 +3,8 @@
- CoreUtil | M3 Odin - 3.0.2
-
+ CoreUtil | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -111,7 +111,7 @@
diff --git a/m3-odin/docs/classes/datepicker.html b/m3-odin/docs/classes/datepicker.html
index 790b2fc1..18d5746c 100644
--- a/m3-odin/docs/classes/datepicker.html
+++ b/m3-odin/docs/classes/datepicker.html
@@ -3,8 +3,8 @@
- DatePicker | M3 Odin - 3.0.2
-
+ DatePicker | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -154,7 +154,7 @@ dateFormat: string
@@ -201,7 +201,7 @@ hideDateFormat: boolean
@@ -222,7 +222,7 @@
@@ -238,7 +238,7 @@
@@ -298,7 +298,7 @@
@@ -358,7 +358,7 @@
@@ -396,7 +396,7 @@
diff --git a/m3-odin/docs/classes/datepipe.html b/m3-odin/docs/classes/datepipe.html
index 53066918..be872342 100644
--- a/m3-odin/docs/classes/datepipe.html
+++ b/m3-odin/docs/classes/datepipe.html
@@ -3,8 +3,8 @@
- DatePipe | M3 Odin - 3.0.2
-
+ DatePipe | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -119,7 +119,7 @@
ErrorState | M3 Odin - 3.0.2
-
+ ErrorState | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -121,7 +121,7 @@
diff --git a/m3-odin/docs/classes/formatutil.html b/m3-odin/docs/classes/formatutil.html
index 0f4797fc..ab93a568 100644
--- a/m3-odin/docs/classes/formatutil.html
+++ b/m3-odin/docs/classes/formatutil.html
@@ -3,8 +3,8 @@
- FormatUtil | M3 Odin - 3.0.2
-
+ FormatUtil | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -109,7 +109,7 @@
@@ -146,7 +146,7 @@
diff --git a/m3-odin/docs/classes/formcontrol.html b/m3-odin/docs/classes/formcontrol.html
index e75d9e4a..31314cb7 100644
--- a/m3-odin/docs/classes/formcontrol.html
+++ b/m3-odin/docs/classes/formcontrol.html
@@ -3,8 +3,8 @@
- FormControl | M3 Odin - 3.0.2
-
+ FormControl | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -165,7 +165,7 @@
constraint: Constraint
@@ -197,7 +197,7 @@ fieldHelp: string
@@ -207,7 +207,7 @@ id: string
@@ -222,7 +222,7 @@ isEnabled: boolean
@@ -232,7 +232,7 @@ isReadDisabled: boolean
@@ -242,7 +242,7 @@ isSlave: boolean
@@ -252,7 +252,7 @@ isSpecial: boolean
@@ -267,7 +267,7 @@ isVisible: boolean
@@ -277,7 +277,7 @@ masterColumn: number
@@ -287,7 +287,7 @@ name: string
@@ -302,7 +302,7 @@ originalName: string
@@ -312,7 +312,7 @@ position: Position
@@ -322,7 +322,7 @@ referenceField: string
@@ -332,7 +332,7 @@ referenceFile: string
@@ -342,7 +342,7 @@ tabIndex: number
@@ -352,7 +352,7 @@ type: number
@@ -362,7 +362,7 @@ value: string
@@ -379,7 +379,7 @@
FormService | M3 Odin - 3.0.2
-
+ FormService | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -148,7 +148,7 @@
@@ -203,7 +203,7 @@
@@ -231,7 +231,7 @@
@@ -265,7 +265,7 @@
@@ -293,7 +293,7 @@
@@ -321,7 +321,7 @@
@@ -530,7 +530,7 @@
diff --git a/m3-odin/docs/classes/functionkey.html b/m3-odin/docs/classes/functionkey.html
index e94d3b36..bee0715c 100644
--- a/m3-odin/docs/classes/functionkey.html
+++ b/m3-odin/docs/classes/functionkey.html
@@ -3,8 +3,8 @@
- FunctionKey | M3 Odin - 3.0.2
-
+ FunctionKey | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -106,7 +106,7 @@ isReverse: boolean
@@ -116,7 +116,7 @@ key: string
@@ -126,7 +126,7 @@ text: string
diff --git a/m3-odin/docs/classes/groupbox.html b/m3-odin/docs/classes/groupbox.html
index 6c37ef5f..78a3a61b 100644
--- a/m3-odin/docs/classes/groupbox.html
+++ b/m3-odin/docs/classes/groupbox.html
@@ -3,8 +3,8 @@
- GroupBox | M3 Odin - 3.0.2
-
+ GroupBox | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -146,7 +146,7 @@
@@ -201,7 +201,7 @@ isLine: boolean
@@ -222,7 +222,7 @@
@@ -260,7 +260,7 @@
@@ -298,7 +298,7 @@ HttpServiceWrapper | M3 Odin - 3.0.2
-
+ HttpServiceWrapper | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -107,7 +107,7 @@
HttpUtil | M3 Odin - 3.0.2
-
+ HttpUtil | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -116,7 +116,7 @@
@@ -154,7 +154,7 @@
@@ -186,7 +186,7 @@
@@ -214,7 +214,7 @@
@@ -237,7 +237,7 @@
@@ -268,7 +268,7 @@
@@ -291,7 +291,7 @@
@@ -322,7 +322,7 @@
@@ -360,7 +360,7 @@
diff --git a/m3-odin/docs/classes/ionapiconstants.html b/m3-odin/docs/classes/ionapiconstants.html
index 7dc7229c..43d52c40 100644
--- a/m3-odin/docs/classes/ionapiconstants.html
+++ b/m3-odin/docs/classes/ionapiconstants.html
@@ -3,8 +3,8 @@
- IonApiConstants | M3 Odin - 3.0.2
-
+ IonApiConstants | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -106,7 +106,7 @@
Static removeByProperty
Static sortByProperty
Static swap
Static toParams
Parameters
@@ -134,7 +134,7 @@Static toUri
Parameters
diff --git a/m3-odin/docs/classes/button.html b/m3-odin/docs/classes/button.html index 1b20fd37..14091182 100644 --- a/m3-odin/docs/classes/button.html +++ b/m3-odin/docs/classes/button.html @@ -3,8 +3,8 @@ -constructor
Returns Button
@@ -165,7 +165,7 @@arguments
command
commandValue
constraint
@@ -207,7 +207,7 @@fieldHelp
@@ -218,7 +218,7 @@id
isEnabled
@@ -245,7 +245,7 @@isReadDisabled
@@ -256,7 +256,7 @@isSlave
@@ -267,7 +267,7 @@isSpecial
isVisible
@@ -294,7 +294,7 @@masterColumn
@@ -305,7 +305,7 @@name
originalName
@@ -332,7 +332,7 @@position
@@ -342,7 +342,7 @@progId
referenceField
@@ -364,7 +364,7 @@referenceFile
@@ -375,7 +375,7 @@tabIndex
@@ -386,7 +386,7 @@type
@@ -397,7 +397,7 @@value
@@ -415,7 +415,7 @@getLeft
Returns number
@@ -433,7 +433,7 @@getTop
Returns number
@@ -451,7 +451,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -469,7 +469,7 @@getWidth
Returns number
diff --git a/m3-odin/docs/classes/checkbox.html b/m3-odin/docs/classes/checkbox.html index 3cbc23cf..7bdf74dd 100644 --- a/m3-odin/docs/classes/checkbox.html +++ b/m3-odin/docs/classes/checkbox.html @@ -3,8 +3,8 @@ -constructor
Returns CheckBox
@@ -163,7 +163,7 @@constraint
@@ -174,7 +174,7 @@fieldHelp
@@ -185,7 +185,7 @@id
isChecked
isEnabled
@@ -228,7 +228,7 @@isReadDisabled
@@ -239,7 +239,7 @@isSlave
@@ -250,7 +250,7 @@isSpecial
isVisible
@@ -277,7 +277,7 @@masterColumn
@@ -288,7 +288,7 @@name
originalName
@@ -315,7 +315,7 @@position
@@ -326,7 +326,7 @@referenceField
@@ -337,7 +337,7 @@referenceFile
@@ -348,7 +348,7 @@tabIndex
@@ -359,7 +359,7 @@type
@@ -370,7 +370,7 @@value
@@ -388,7 +388,7 @@getLeft
Returns number
@@ -406,7 +406,7 @@getTop
Returns number
@@ -424,7 +424,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -442,7 +442,7 @@getWidth
Returns number
diff --git a/m3-odin/docs/classes/combobox.html b/m3-odin/docs/classes/combobox.html index 64742494..209140ad 100644 --- a/m3-odin/docs/classes/combobox.html +++ b/m3-odin/docs/classes/combobox.html @@ -3,8 +3,8 @@ -constructor
Returns ComboBox
@@ -167,7 +167,7 @@command
commandValue
constraint
@@ -199,7 +199,7 @@fieldHelp
@@ -210,7 +210,7 @@id
isEditable
isEnabled
@@ -246,7 +246,7 @@isPosition
isReadDisabled
@@ -273,7 +273,7 @@isSlave
@@ -284,7 +284,7 @@isSpecial
isVisible
@@ -310,7 +310,7 @@items
masterColumn
@@ -332,7 +332,7 @@name
originalName
@@ -359,7 +359,7 @@position
@@ -370,7 +370,7 @@referenceField
@@ -381,7 +381,7 @@referenceFile
@@ -391,7 +391,7 @@selected
tabIndex
@@ -413,7 +413,7 @@type
@@ -424,7 +424,7 @@value
@@ -442,7 +442,7 @@getLeft
Returns number
@@ -460,7 +460,7 @@getTop
Returns number
@@ -478,7 +478,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -496,7 +496,7 @@getWidth
Returns number
diff --git a/m3-odin/docs/classes/comboboxitem.html b/m3-odin/docs/classes/comboboxitem.html index 735abc86..f597eaf2 100644 --- a/m3-odin/docs/classes/comboboxitem.html +++ b/m3-odin/docs/classes/comboboxitem.html @@ -3,8 +3,8 @@ -isSelected
name
text
value
isNumeric
isUpper
maxDecimals
maxLength
Static button
Static checkBox
Static comboBox
Static datePicker
Static groupBox
Static label
Static list
Static listColumn
Static textBox
Static getName
Parameters
diff --git a/m3-odin/docs/classes/corebase.html b/m3-odin/docs/classes/corebase.html index 52d80c2d..c5c66c30 100644 --- a/m3-odin/docs/classes/corebase.html +++ b/m3-odin/docs/classes/corebase.html @@ -3,8 +3,8 @@ -constructor
hasError
Implementation of IErrorState.hasError
Inherited from ErrorState.hasError
-- Defined in projects/infor-up/m3-odin/base.ts:19
+ - Defined in projects/infor-up/m3-odin/base.ts:19
Protected isDebug
Protected logDebug
Protected logError
Protected logInfo
Protected logWarning
Static getUuid
Parameters
@@ -134,7 +134,7 @@Static hasValue
Parameters
@@ -157,7 +157,7 @@Static isUndefined
Parameters
@@ -180,7 +180,7 @@Static random
constructor
Parameters
@@ -180,7 +180,7 @@constraint
@@ -190,7 +190,7 @@dateFormat
fieldHelp
@@ -211,7 +211,7 @@hideDateFormat
id
isBrowsable
@@ -249,7 +249,7 @@isEnabled
@@ -260,7 +260,7 @@isFixedFont
@@ -271,7 +271,7 @@isHighIntensity
@@ -282,7 +282,7 @@isPosition
isReadDisabled
@@ -309,7 +309,7 @@isReverse
@@ -320,7 +320,7 @@isRightAligned
@@ -331,7 +331,7 @@isSlave
@@ -342,7 +342,7 @@isSpecial
isVisible
@@ -369,7 +369,7 @@masterColumn
@@ -380,7 +380,7 @@name
originalName
@@ -407,7 +407,7 @@position
@@ -418,7 +418,7 @@referenceField
@@ -429,7 +429,7 @@referenceFile
@@ -440,7 +440,7 @@tabIndex
@@ -451,7 +451,7 @@type
@@ -462,7 +462,7 @@value
@@ -480,7 +480,7 @@getLeft
Returns number
@@ -498,7 +498,7 @@getTop
Returns number
@@ -516,7 +516,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -534,7 +534,7 @@getWidth
Returns number
@@ -552,7 +552,7 @@isNumeric
transform
Parameters
diff --git a/m3-odin/docs/classes/errorstate.html b/m3-odin/docs/classes/errorstate.html index 09d565b6..85e67010 100644 --- a/m3-odin/docs/classes/errorstate.html +++ b/m3-odin/docs/classes/errorstate.html @@ -3,8 +3,8 @@ -hasError
Static formatDate
Static parseDate
constructor
Parameters
@@ -187,7 +187,7 @@constraint
fieldHelp
id
isEnabled
isReadDisabled
isSlave
isSpecial
isVisible
masterColumn
name
originalName
position
referenceField
referenceFile
tabIndex
type
value
getLeft
Returns number
@@ -396,7 +396,7 @@getTop
Returns number
@@ -413,7 +413,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -430,7 +430,7 @@getWidth
Returns number
diff --git a/m3-odin/docs/classes/formservice.html b/m3-odin/docs/classes/formservice.html index 101ce1ec..7b5a51b2 100644 --- a/m3-odin/docs/classes/formservice.html +++ b/m3-odin/docs/classes/formservice.html @@ -3,8 +3,8 @@ -constructor
Parameters
@@ -174,7 +174,7 @@developmentSetEnvironmentContext
executeBookmark
executeCommand
executeRequest
executeSearch
getEnvironmentContext
translate
isReverse
key
text
constructor
Returns GroupBox
@@ -163,7 +163,7 @@constraint
@@ -174,7 +174,7 @@fieldHelp
@@ -185,7 +185,7 @@id
isEnabled
@@ -211,7 +211,7 @@isLine
isReadDisabled
@@ -233,7 +233,7 @@isSlave
@@ -244,7 +244,7 @@isSpecial
isVisible
@@ -271,7 +271,7 @@masterColumn
@@ -282,7 +282,7 @@name
originalName
@@ -309,7 +309,7 @@position
@@ -320,7 +320,7 @@referenceField
@@ -331,7 +331,7 @@referenceFile
@@ -342,7 +342,7 @@tabIndex
@@ -353,7 +353,7 @@type
@@ -364,7 +364,7 @@value
@@ -382,7 +382,7 @@getLeft
Returns number
@@ -400,7 +400,7 @@getTop
Returns number
@@ -418,7 +418,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -436,7 +436,7 @@getWidth
Returns number
diff --git a/m3-odin/docs/classes/httpservicewrapper.html b/m3-odin/docs/classes/httpservicewrapper.html index fe7b27bf..1c5c4ddc 100644 --- a/m3-odin/docs/classes/httpservicewrapper.html +++ b/m3-odin/docs/classes/httpservicewrapper.html @@ -3,8 +3,8 @@ -constructor
Parameters
@@ -136,7 +136,7 @@execute
Parameters
diff --git a/m3-odin/docs/classes/httputil.html b/m3-odin/docs/classes/httputil.html index 99515a5c..ce30f43f 100644 --- a/m3-odin/docs/classes/httputil.html +++ b/m3-odin/docs/classes/httputil.html @@ -3,8 +3,8 @@ -Static combine
Static getParameter
Static getQuery
Static isIframe
Static isJsonLike
Static isLocalhost
Static isSuccess
Static parseQuery
Static toQuery
Static platformHeaderN
platformHeaderName: string = "x-infor-ionapi-platform"
@@ -122,7 +122,7 @@
Static platformHeaderV
platformHeaderValue: string = "m3-odin"
@@ -137,7 +137,7 @@
Static sourceHeaderNam
sourceHeaderName: string = "x-infor-ionapi-source"
diff --git a/m3-odin/docs/classes/ionapiservice.html b/m3-odin/docs/classes/ionapiservice.html
index d840b037..50939b02 100644
--- a/m3-odin/docs/classes/ionapiservice.html
+++ b/m3-odin/docs/classes/ionapiservice.html
@@ -3,8 +3,8 @@
- IonApiService | M3 Odin - 3.0.2
-
+ IonApiService | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -144,7 +144,7 @@
IonApiServiceCore | M3 Odin - 3.0.2
-
+ IonApiServiceCore | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -136,7 +136,7 @@
@@ -238,7 +238,7 @@
@@ -262,7 +262,7 @@
@@ -300,7 +300,7 @@
@@ -338,7 +338,7 @@
@@ -370,7 +370,7 @@
@@ -402,7 +402,7 @@
Label | M3 Odin - 3.0.2
-
+ Label | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -150,7 +150,7 @@ isAdditionalInfo: boolean
@@ -209,7 +209,7 @@ isColon: boolean
@@ -219,7 +219,7 @@ isEmphasized: boolean
@@ -230,7 +230,7 @@ isFixed: boolean
@@ -251,7 +251,7 @@
@@ -289,7 +289,7 @@
@@ -327,7 +327,7 @@ toolTip: string
@@ -392,7 +392,7 @@ List | M3 Odin - 3.0.2
-
+ List | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -155,7 +155,7 @@ aggregateDepth: number
@@ -181,7 +181,7 @@ columns: ListColumn[] = []
@@ -192,7 +192,7 @@ hasSubRows: boolean
@@ -224,7 +224,7 @@
@@ -239,7 +239,7 @@ isAggregate: boolean
@@ -249,7 +249,7 @@ isCleared: boolean
@@ -260,7 +260,7 @@ isEnd: boolean
@@ -281,7 +281,7 @@ isScrollToEnd: boolean
@@ -302,7 +302,7 @@
@@ -329,7 +329,7 @@ items: ListRow[] = []
@@ -350,7 +350,7 @@
@@ -377,7 +377,7 @@ scroll: number
@@ -430,7 +430,7 @@ subColumns: ListColumn[]
@@ -441,7 +441,7 @@ ListCell | M3 Odin - 3.0.2
-
+ ListCell | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -117,7 +117,7 @@ isBool: boolean
@@ -127,7 +127,7 @@ isChecked: boolean
@@ -137,7 +137,7 @@ isEditable: boolean
@@ -147,7 +147,7 @@ isEnabled: boolean
@@ -157,7 +157,7 @@ isHidden: boolean
@@ -167,7 +167,7 @@ isHighIntensity: boolean
@@ -177,7 +177,7 @@ isReverse: boolean
@@ -187,7 +187,7 @@ isRight: boolean
@@ -197,7 +197,7 @@ isUpper: boolean
@@ -207,7 +207,7 @@ maxLength: number
@@ -217,7 +217,7 @@ minWidth: number
@@ -227,7 +227,7 @@ name: string
@@ -237,7 +237,7 @@ span: number
@@ -247,7 +247,7 @@ text: string
diff --git a/m3-odin/docs/classes/listcolumn.html b/m3-odin/docs/classes/listcolumn.html
index fb7886bd..30e97e02 100644
--- a/m3-odin/docs/classes/listcolumn.html
+++ b/m3-odin/docs/classes/listcolumn.html
@@ -3,8 +3,8 @@
- ListColumn | M3 Odin - 3.0.2
-
+ ListColumn | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -163,7 +163,7 @@ aggregate: number
@@ -189,7 +189,7 @@ aggregateDisplayRule: number
@@ -199,7 +199,7 @@ aggregateUpdateRule: number
@@ -209,7 +209,7 @@ category: string
@@ -219,7 +219,7 @@ columnType: string
@@ -230,7 +230,7 @@ fullName: string
@@ -266,7 +266,7 @@ header: string
@@ -277,7 +277,7 @@
@@ -292,7 +292,7 @@ index: number
@@ -303,7 +303,7 @@ isRight: boolean
@@ -335,7 +335,7 @@
@@ -361,7 +361,7 @@ isUpperCase: boolean
@@ -372,7 +372,7 @@ maxDecimals: number
@@ -403,7 +403,7 @@ maxLength: number
@@ -414,7 +414,7 @@
@@ -430,7 +430,7 @@ positionField: FormControl
@@ -462,7 +462,7 @@ toolTip: string
@@ -505,7 +505,7 @@ width: number
@@ -544,7 +544,7 @@
@@ -637,7 +637,7 @@
@@ -659,7 +659,7 @@
diff --git a/m3-odin/docs/classes/listrow.html b/m3-odin/docs/classes/listrow.html
index 47445b14..4b78bb86 100644
--- a/m3-odin/docs/classes/listrow.html
+++ b/m3-odin/docs/classes/listrow.html
@@ -3,8 +3,8 @@
- ListRow | M3 Odin - 3.0.2
-
+ ListRow | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -110,7 +110,7 @@ columnCount: number
@@ -120,7 +120,7 @@ index: number
@@ -130,7 +130,7 @@ isProtected: boolean
@@ -140,7 +140,7 @@ isSelected: boolean
@@ -150,7 +150,7 @@ items: any[]
@@ -160,7 +160,7 @@ name: string
@@ -170,7 +170,7 @@ subItems: any[]
diff --git a/m3-odin/docs/classes/log.html b/m3-odin/docs/classes/log.html
index 0b733f23..297e3bd1 100644
--- a/m3-odin/docs/classes/log.html
+++ b/m3-odin/docs/classes/log.html
@@ -3,8 +3,8 @@
- Log | M3 Odin - 3.0.2
-
+ Log | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -141,7 +141,7 @@
@@ -157,7 +157,7 @@ level: number = Log.levelInfo
@@ -172,7 +172,7 @@ levelDebug: number = 4
@@ -187,7 +187,7 @@ levelError: number = 1
@@ -202,7 +202,7 @@ levelFatal: number = 0
@@ -217,7 +217,7 @@ levelInfo: number = 3
@@ -232,7 +232,7 @@ levelTrace: number = 5
@@ -247,7 +247,7 @@ levelWarning: number = 2
@@ -269,7 +269,7 @@
@@ -297,7 +297,7 @@
@@ -334,7 +334,7 @@
@@ -371,7 +371,7 @@
@@ -408,7 +408,7 @@
@@ -448,7 +448,7 @@
@@ -485,7 +485,7 @@
@@ -508,7 +508,7 @@
@@ -531,7 +531,7 @@
@@ -562,7 +562,7 @@
@@ -584,7 +584,7 @@
@@ -606,7 +606,7 @@
@@ -628,7 +628,7 @@
@@ -665,7 +665,7 @@
diff --git a/m3-odin/docs/classes/m3odinmodule.html b/m3-odin/docs/classes/m3odinmodule.html
index 90c4ca16..1049319c 100644
--- a/m3-odin/docs/classes/m3odinmodule.html
+++ b/m3-odin/docs/classes/m3odinmodule.html
@@ -3,8 +3,8 @@
- M3OdinModule | M3 Odin - 3.0.2
-
+ M3OdinModule | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
diff --git a/m3-odin/docs/classes/miconstants.html b/m3-odin/docs/classes/miconstants.html
index eebb83f5..41815d48 100644
--- a/m3-odin/docs/classes/miconstants.html
+++ b/m3-odin/docs/classes/miconstants.html
@@ -3,8 +3,8 @@
- MIConstants | M3 Odin - 3.0.2
-
+ MIConstants | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -105,7 +105,7 @@
@@ -120,7 +120,7 @@
diff --git a/m3-odin/docs/classes/mirecord.html b/m3-odin/docs/classes/mirecord.html
index ab826d61..9515580c 100644
--- a/m3-odin/docs/classes/mirecord.html
+++ b/m3-odin/docs/classes/mirecord.html
@@ -3,8 +3,8 @@
- MIRecord | M3 Odin - 3.0.2
-
+ MIRecord | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -140,7 +140,7 @@
@@ -172,7 +172,7 @@ metadata: IMIMetadataMap = null
@@ -195,7 +195,7 @@
@@ -232,7 +232,7 @@
@@ -269,7 +269,7 @@
@@ -306,7 +306,7 @@
@@ -343,7 +343,7 @@
diff --git a/m3-odin/docs/classes/miservice.html b/m3-odin/docs/classes/miservice.html
index e0c69bbb..c75dddbc 100644
--- a/m3-odin/docs/classes/miservice.html
+++ b/m3-odin/docs/classes/miservice.html
@@ -3,8 +3,8 @@
- MIService | M3 Odin - 3.0.2
-
+ MIService | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -142,7 +142,7 @@
diff --git a/m3-odin/docs/classes/miservicecore.html b/m3-odin/docs/classes/miservicecore.html
index 6602531f..75de7d06 100644
--- a/m3-odin/docs/classes/miservicecore.html
+++ b/m3-odin/docs/classes/miservicecore.html
@@ -3,8 +3,8 @@
- MIServiceCore | M3 Odin - 3.0.2
-
+ MIServiceCore | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -135,7 +135,7 @@
@@ -190,7 +190,7 @@
@@ -241,7 +241,7 @@
@@ -265,7 +265,7 @@
@@ -303,7 +303,7 @@
@@ -341,7 +341,7 @@
@@ -373,7 +373,7 @@
diff --git a/m3-odin/docs/classes/miutil.html b/m3-odin/docs/classes/miutil.html
index 52534f58..90a24baa 100644
--- a/m3-odin/docs/classes/miutil.html
+++ b/m3-odin/docs/classes/miutil.html
@@ -3,8 +3,8 @@
- MIUtil | M3 Odin - 3.0.2
-
+ MIUtil | M3 Odin - 4.0.0
+
@@ -22,7 +22,7 @@
Preparing search index...
The search index is not available
- M3 Odin - 3.0.2
+ M3 Odin - 4.0.0
@@ -113,7 +113,7 @@
constructor
Parameters
@@ -176,7 +176,7 @@execute
Parameters
@@ -199,7 +199,7 @@getContext
Parameters
@@ -409,7 +409,7 @@setDevelopmentToken
Parameters
diff --git a/m3-odin/docs/classes/ionapiservicecore.html b/m3-odin/docs/classes/ionapiservicecore.html index 1251e0d2..453af5a7 100644 --- a/m3-odin/docs/classes/ionapiservicecore.html +++ b/m3-odin/docs/classes/ionapiservicecore.html @@ -3,8 +3,8 @@ -constructor
Parameters
@@ -166,7 +166,7 @@execute
Parameters
@@ -190,7 +190,7 @@getContext
Parameters
@@ -215,7 +215,7 @@hasError
Implementation of IErrorState.hasError
Inherited from ErrorState.hasError
-- Defined in projects/infor-up/m3-odin/base.ts:19
+ - Defined in projects/infor-up/m3-odin/base.ts:19
Protected isDebug
Protected logDebug
Protected logError
Protected logInfo
Protected logWarning
Inherited from CoreBase.logWarning
-- Defined in projects/infor-up/m3-odin/base.ts:89
+ - Defined in projects/infor-up/m3-odin/base.ts:89
setDevelopmentToken
Parameters
@@ -425,7 +425,7 @@setUrl
Parameters
diff --git a/m3-odin/docs/classes/label.html b/m3-odin/docs/classes/label.html index 20df1a6d..cc069e0e 100644 --- a/m3-odin/docs/classes/label.html +++ b/m3-odin/docs/classes/label.html @@ -3,8 +3,8 @@ -constructor
Returns Label
@@ -167,7 +167,7 @@constraint
@@ -178,7 +178,7 @@fieldHelp
@@ -189,7 +189,7 @@id
@@ -199,7 +199,7 @@isAdditionalInfo
isColon
isEmphasized
isEnabled
@@ -240,7 +240,7 @@isFixed
isReadDisabled
@@ -262,7 +262,7 @@isSlave
@@ -273,7 +273,7 @@isSpecial
isVisible
@@ -300,7 +300,7 @@masterColumn
@@ -311,7 +311,7 @@name
originalName
@@ -338,7 +338,7 @@position
@@ -349,7 +349,7 @@referenceField
@@ -360,7 +360,7 @@referenceFile
@@ -371,7 +371,7 @@tabIndex
@@ -381,7 +381,7 @@toolTip
type
@@ -403,7 +403,7 @@value
@@ -421,7 +421,7 @@getLeft
Returns number
@@ -439,7 +439,7 @@getTop
Returns number
@@ -457,7 +457,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -475,7 +475,7 @@getWidth
Returns number
diff --git a/m3-odin/docs/classes/list.html b/m3-odin/docs/classes/list.html index 57d63ecc..5fe49fe3 100644 --- a/m3-odin/docs/classes/list.html +++ b/m3-odin/docs/classes/list.html @@ -3,8 +3,8 @@ -constructor
Returns List
@@ -171,7 +171,7 @@aggregateDepth
columns
constraint
@@ -203,7 +203,7 @@fieldHelp
@@ -213,7 +213,7 @@hasSubRows
id
isAggregate
isCleared
isEnabled
@@ -270,7 +270,7 @@isEnd
isReadDisabled
@@ -291,7 +291,7 @@isScrollToEnd
isSlave
@@ -313,7 +313,7 @@isSpecial
isVisible
@@ -339,7 +339,7 @@items
masterColumn
@@ -361,7 +361,7 @@name
originalName
@@ -388,7 +388,7 @@position
@@ -399,7 +399,7 @@referenceField
@@ -410,7 +410,7 @@referenceFile
@@ -420,7 +420,7 @@scroll
subColumns
tabIndex
@@ -452,7 +452,7 @@type
@@ -463,7 +463,7 @@value
@@ -481,7 +481,7 @@getLeft
Returns number
@@ -499,7 +499,7 @@getTop
Returns number
@@ -517,7 +517,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -535,7 +535,7 @@getWidth
Returns number
diff --git a/m3-odin/docs/classes/listcell.html b/m3-odin/docs/classes/listcell.html index 49bf4fb1..70beea6a 100644 --- a/m3-odin/docs/classes/listcell.html +++ b/m3-odin/docs/classes/listcell.html @@ -3,8 +3,8 @@ -isBool
isChecked
isEditable
isEnabled
isHidden
isHighIntensity
isReverse
isRight
isUpper
maxLength
minWidth
name
span
text
constructor
Returns ListColumn
@@ -179,7 +179,7 @@aggregate
aggregateDisplayRule
aggregateUpdateRule
category
columnType
constraint
@@ -241,7 +241,7 @@fieldHelp
@@ -251,7 +251,7 @@fullName
header
id
index
isEnabled
@@ -314,7 +314,7 @@isReadDisabled
@@ -324,7 +324,7 @@isRight
isSlave
@@ -346,7 +346,7 @@isSpecial
isUpperCase
isVisible
@@ -383,7 +383,7 @@masterColumn
@@ -393,7 +393,7 @@maxDecimals
maxLength
name
originalName
@@ -441,7 +441,7 @@position
@@ -451,7 +451,7 @@positionField
referenceField
@@ -473,7 +473,7 @@referenceFile
@@ -484,7 +484,7 @@tabIndex
@@ -494,7 +494,7 @@toolTip
type
@@ -516,7 +516,7 @@value
@@ -526,7 +526,7 @@width
getLeft
Returns number
@@ -562,7 +562,7 @@getTop
Returns number
@@ -580,7 +580,7 @@getTypeName
Returns "GroupBox" | "List" | "Label" | "TextBox" | "CheckBox" | "ComboBox" | "DatePicker" | "Button" | "ListColumn"
@@ -598,7 +598,7 @@getWidth
Returns number
@@ -615,7 +615,7 @@isBool
isDate
isNumeric
columnCount
index
isProtected
isSelected
items
name
subItems
Static isConsoleLogisConsoleLogEnabled: boolean = true
Static level
Static levelDebug
Static levelError
Static levelFatal
Static levelInfo
Static levelTrace
Static levelWarning
Static addAppender
Static debug
Static error
Static fatal
Static getLogEntry
Static info
Static isDebug
Static isTrace
Static removeAppender
Static setDebug
Static setDefault
Static setTrace
Static trace
Static warning
Static datePattern: "yyyyMMdd" = "yyyyMMdd"
Static decimalSeparator: "." = "."
constructor
metadata
setDate
setDateString
setNumber
setNumberString
setString
constructor
Returns MIService
@@ -162,7 +162,7 @@execute
constructor
Parameters
@@ -162,7 +162,7 @@execute
executeInternal
Parameters
@@ -218,7 +218,7 @@hasError
Implementation of IErrorState.hasError
Inherited from ErrorState.hasError
-- Defined in projects/infor-up/m3-odin/base.ts:19
+ - Defined in projects/infor-up/m3-odin/base.ts:19
Protected isDebug
Protected logDebug
Protected logError
Protected logInfo
Protected logWarning
Inherited from CoreBase.logWarning
-- Defined in projects/infor-up/m3-odin/base.ts:89
+ - Defined in projects/infor-up/m3-odin/base.ts:89
Static createUpdateRec