neon
Provides methods for working within a neon environment (e.g. working with entities, webclient-access, etc.)
Methods
addRecord
addRecord(
pConsumerName,pFieldnameValues):string
Adds a new record to a entity linked by a consumer
Parameters
string | number | booleanName of the consumer, which should be used to write the record
anyThe values as a map. E.g.: {Fieldname:Value, Fieldname2:Value}
Returns
stringthe UUID of the new record
Throws
May throw an exception.
closeImage
closeImage(
pImageID,pForce):void
Closes a frame.
Parameters
string | number | booleanThe ID of the frame.
boolean'true' if you want to close the frame without prompting the user.
Returns
voidThrows
May throw an exception.
Example
var imageID = neon.openCalendar();
neon.closeImage(imageID, true);
copyToClipboard
copyToClipboard(
pDataToCopy):void
Copies the provided String to the clipboard.
Parameters
string | number | booleanthe String to copy to the clipboard.
Returns
voidThrows
May throw an exception.
deleteRecord
deleteRecord(
pConsumerName,pUid):void
Removes a record from an outgoing linked Entity (an Entity that is consumed by the current Entity).
Parameters
string | number | booleanName of the consumer in the current entity that points to the entity where record is deleted.
string | number | booleanUID of the record to delete.
Returns
voidThrows
May throw an exception.
download
download(
pBase64,pFileName):void
Returns a file to the client
Parameters
string | number | booleanThe content of the file.
string | number | booleanThe name of the file.
Returns
voidThrows
May throw an exception.
Example
var file = getIcon("CHATPortrait", "Admin", true);
neon.download(file, "PictureAdmin.png")
downloadToZip
downloadToZip(
pZipFileName,pFileData,pFileNames):void
Liefert einen ZIP-Datei an den Client welches die übergebenen Dateien beinhaltet
Parameters
string | number | booleanDer Name der zu erstellenden ZIP-Datei
string[]Dateiinhalte Base64 kodiert
string[]Dateinamen
Returns
voidThrows
May throw an exception.
executeJs
executeJs(
pExpression):void
Executes a JavaScript Expression in the current UI.
Parameters
string | number | booleanthe Expression to be executed in the browser.
Returns
voidThrows
May throw an exception.
focusComponent
focusComponent(
pComponentId):void
Focuses an UI component with the given ID. The ID of the component is composed of "<entityname> . <entityfieldname> " e.g. "Organisation_entity.NAME".
If multiple components with the same ID are present then the first component in the HTML DOM is focused.
</entityfieldname> </entityname>
Parameters
string | number | booleanthe ID of the component to be focused
Returns
voidThrows
AditoUnsupportedOperationException
getImageContent
getImageContent(
pImageID):string
Retrieves the current contents of the TopComponent as defined in the Designer.
Parameters
string | number | booleanthis parameter is currently ignored. Always the current main image is used.
Returns
stringTitle and description of the image
Throws
May throw an exception.
openCalendar
openCalendar(
pViewMode?,pUsers?,pDays?):string
Öffnet den Kalender
Parameters
numberder gewünschte Viewmode
anydie User, die sofort geöffnet werden sollen
string[]die Tage, die selektiert werden sollen
Returns
stringdie ID des Kalenders
Throws
May throw an exception.
openCalendarEntry
openCalendarEntry(
pEntry,pReccurrenceID,pOperatingState,pPrompts,pCalendarOwner):string
Opens a calendar entry in a window. If it has a UID, it will be edited, otherwise, it will be opened as a newly created entry.
Parameters
anyThe entry to be opened, as a map or object[] (or the UID of the entry)
string | number | booleanFor recurring appointments, this ID indicates the element to be edited. 'Null' for the main element (date als "long").
string | number | booleanThe operatingState in which this entry should be opened.
anyAdditional variables for the frame, as a map; 'null' for none.
string | number | booleanReturns
stringThrows
May throw an exception.
openCalendarEntryByUID
openCalendarEntryByUID(
pType,pUser,pEntryUID,pReccurrenceID,pOperatingState,pPrompts,pCalendarOwner):string
Opens a calendar entry in a window. If it has a UID, it will be edited, otherwise, it will be opened as a newly created entry.
Parameters
numberThe entry type (appointment or task).
string | number | booleanThe users in whose mailbox the entry exists.
string | number | booleanThe UID of the entry.
string | number | booleanFor recurring appointments, this ID indicates the element to be edited; 'null' for the main element. (date als "long")
string | number | booleanThe operatingState in which this entry should be opened.
anyAdditional variables for the frame, as a map; 'null' for none.
string | number | booleanReturns
stringThrows
May throw an exception.
Example
if(vars.exists("$sys.selectionRows"))
{
var uid = JSON.parse(vars.get("$sys.selectionRows"))[0].UID;
uid = text.decodeMS(uid)[0];
neon.openCalendarEntryByUID(calendars.VTODO, null, uid, "", neon.OPERATINGSTATE_VIEW, null);
}
openCalendarICS
openCalendarICS(
pICalText,pDefaultTimeZone,pOperatingState,pPrompts,pCalendarOwner):boolean
Opens an appointment in ICS format.
Parameters
string | number | booleanThe contents of the ICS file.
string | number | booleanThe default time zone to be used if none was specified.
string | number | booleanThe operatingState in which this entry should be opened.
anyAdditional variables for the frame, as a map; 'null' for none.
string | number | booleanReturns
boolean'true' if the contents was opened.
Throws
May throw an exception.
openContext
openContext(
pContextName,pViewName,pIds,pInitialOperatingState,pVariables,pTabID):string
Opens a designated view of a context.
Parameters
string | number | booleanName of the context, e.g. "Organisation"
string | number | booleanName of the view that exists in the context given in pContextName, e.g. "OrganisationFilter_view", "OrganisationSpecialisedGeodata_view"
string[]An includelist of UIDs (=filter for record(s) with these IDs) or "null"/empty array for all
string | number | booleanOperatingState that is loaded, see "neon.OPERATINGSTATE_***"; Examples: for a filter_view you probably want to set "neon.OPERATINGSTATE_SEARCH" while for an edit_view you might want to pass "OPERATINGSTATE_NEW" or "OPERATINGSTATE_EDIT"
anyParameter variables as "Object" (key-value-pairs); null for no parameter variables
string | number | booleanID of the tab which is opened by default; "null" for non specific (=use default behaviour); this is useful for example when using the MasterDetail-layout in a view
Returns
stringImageId of the newly opened context or null if the image could not be opened while not throwing an error
Deprecated
Deprecated since 2021.2.0, 10/2021. Use neon.openContextWithRecipe instead, this method will be removed in future versions
Throws
May throw an exception.
Throws
AditoIllegalArgumentException
openContext(
pContextName,pViewName,pIds,pInitialOperatingState,pVariables,pTabID,pOpenInNewTab):string
Opens a designated view of a context.
Parameters
string | number | booleanName of the context, e.g. "Organisation"
string | number | booleanName of the view that exists in the context given in pContextName, e.g. "OrganisationFilter_view", "OrganisationSpecialisedGeodata_view"
string[]An includelist of UIDs (=filter for record(s) with these IDs) or "null"/empty array for all
string | number | booleanOperatingState that is loaded, see "neon.OPERATINGSTATE_***"; Examples: for a filter_view you probably want to set "neon.OPERATINGSTATE_SEARCH" while for an edit_view you might want to pass "OPERATINGSTATE_NEW" or "OPERATINGSTATE_EDIT"
anyParameter variables as "Object" (key-value-pairs); null for no parameter variables
string | number | booleanID of the tab which is opened by default; "null" for non specific (=use default behaviour); this is useful for example when using the MasterDetail-layout in a view
booleanFlag that determines if the context is to be opened in a new tab. This parameter is only effective in desktop browsers. It will be ignored on tablets or mobile devices, and when targeting unsupported Views (e.g, PreviewViews or "small" EditViews).
Returns
stringImageId of the newly opened context or null if the image could not be opened while not throwing an error
Throws
May throw an exception.
Throws
AditoIllegalArgumentException
openContextWithRecipe
openContextWithRecipe(
pContextName,pViewName,pEntityRecordsRecipe,pInitialOperatingState,pTabID,pOpenInNewTab,pUseInitFilterAsFallback?):string
Opens a designated view of a context with a EntityRecordsRecipe.
You can create a new EntityRecordsRecipe with a EntityRecordsRecipeBuilder (neonFilter.createEntityRecordsRecipeBuilder) or you can pass an already existing entityRecordsRecipe.
Parameters
string | number | booleanName of the context, e.g. "Organisation" This param is always required and must not be empty.
string | number | booleanName of the view that exists in the context given in pContextName, e.g. "OrganisationFilter_view", "OrganisationSpecialisedGeodata_view" This param is always required but may be null.
anydefines which records are loaded when opening the view; To create a new EntityRecordsRecipe use "neonFilter.createEntityRecordsRecipeBuilder" Can be either from type "String" (a stringified RecordsRecipe from a $sys-variable for example) or an object of "EntityRecordsRecipeBuilder". The entity-property of the EntityRecordsRecipe is ignored because the entity is already defined by the entity of the given context (pContextName). The provider-property of the EntityRecordsRecipe is ignored because the provider is defined by the used view. Note that this method will handle the includedIds of the EntityRecordsRecipe different than the neon.openContext methods: While the deprecated methods neon.openContext(...) treat a value for pIds null or empty array equally, this method follows the EntityRecordsRecipe principle where null represents no filter for includedIds and an empty array represents records with exactly these includedIds which means: no data. This param is always required but may be null. Only if this param is null an existing default filter or the defined initFilter will be used.
string | number | booleanOperatingState that is loaded, see "neon.OPERATINGSTATE_***"; Examples: for a filter_view you probably want to set "neon.OPERATINGSTATE_SEARCH" while for an edit_view you might want to pass "OPERATINGSTATE_NEW" or "OPERATINGSTATE_EDIT" This param can be omitted; default is OPERATINGSTATE_VIEW
string | number | booleanID of the tab which is opened by default; null for non specific (=use default behaviour); this is useful for example when using the MasterDetail-layout in a view To get the ID of a tab you can either open the tab and take a look in the URL or you can view the data-model source - for example the name(=id) of a neonViewReference. This param can be omitted.
booleanFlag that determines if the context should be opened in a new tab. This param can be omitted or must be true/false (never null); default value is false
booleanWhen the userFilter in the recordRecipe is null and pUseInitFilterAsFallback = false then an empty fallback filter will be used. Otherwise if pUseInitFilterAsFallback = true then no filter will be set and initFilterProcess will be used.
Returns
stringImageId of the newly opened context or null if the image could not be opened while not throwing an error
Throws
May throw an exception.
Throws
AditoUnsupportedOperationException
openFile
openFile(
pBase64,pFileName,pMimeType,pNewTab):void
Try to open the file in the browser. If the browser does not support this action, the file will be downloaded.
Parameters
string | number | booleanThe content of the file.
string | number | booleanThe name of the file.
string | number | booleanThe mimeType of the file.
booleanSpecifies if the file should be opened in the new tab.
Returns
voidThrows
May throw an exception.
Example
var file = getIcon("CHATPortrait", "Admin", true);
neon.openFile(file, "PictureAdmin.png", "image/png", true)
openHome
openHome():
string
Öffnet das die Home-Maske
Returns
stringdie ID des Frames
Throws
May throw an exception.
openIndexSearch
openIndexSearch(
pPattern,pGroups,pTagTitles?):string
Opens the index search.
Parameters
string | number | booleanA pattern; 'null' for none.
string[]The restricting groups; 'null' for all.
string[]The titles of the tags; 'null' for none.
Returns
stringThe ID of the index search.
Throws
May throw an exception.
Example
var id = neon.openIndexSearch("Meier*", ["PERS", "ORG"]);
openReport()
openReport(
pName,pCondition,pPrompts,pColumnNames,pData,pVariables):string
Opens a report.
Parameters
string | number | booleanThe name of the report.
anyA restricting condition.
anyThe prompts for the report itself.
string[]The columns, if you want to pass the data directly.
string[][]The report data.
anyThe variables for the image.
Returns
stringThe report ID.
Deprecated
Element is marked for removal. Deprecated since 10.01.2023. use openContextWithRecipe instead
Throws
May throw an exception.
openReport(
pName,pCondition,pPrompts,pColumnNames,pData,pVariables,pOpenInNewTab):string
Opens a report.
Example
var params = new Array;
var imgData = getMyASYS_ICONSdata();
params["myAddr"] = imgData[0];
params["adito.image.myLogo"] = imgData[1];
params["CAMPAIGN"] = vars.getString("$comp.name");
var rptfields = ["CODE", "STEP"];
data = db.table("select "+ rptfields.join(",") + " from CAMPAIGNLOG " + " join CAMPAIGNSTEP on STEP_ID = CAMPAIGNSTEPID " + " where CAMPAIGNLOG.CAMPAIGN_ID = '" + id + "' order by CODE");
neon.openReport("RPTJ_CAMPAIGN", null, params, rptfields, data, null);
Example
var params = new Array;
var imgData = getMyASYS_ICONSdata();
params["myAddr"] = imgData[0];
params["adito.image.myLogo"] = imgData[1];
params["CAMPAIGN"] = vars.getString("$comp.name");
var rptfields = ["CODE", "STEP"];
data = db.table("select "+ rptfields.join(",") + " from CAMPAIGNLOG " + " join CAMPAIGNSTEP on STEP_ID = CAMPAIGNSTEPID " + " where CAMPAIGNLOG.CAMPAIGN_ID = '" + id + "' order by CODE");
neon.openReport("RPTJ_CAMPAIGN", null, params, rptfields, data, null);
Parameters
string | number | booleanThe name of the report.
anyA restricting condition.
anyThe prompts for the report itself.
string[]The columns, if you want to pass the data directly.
string[][]The report data.
anyThe variables for the image.
booleanFlag that determines if the context is to be opened in a new tab. This parameter is only effective in desktop browsers. It will be ignored on tablets or mobile devices, and when targeting unsupported Views (e.g, PreviewViews or "small" EditViews).
Returns
stringThe report ID.
Deprecated
Element is marked for removal. Deprecated since 10.01.2023. use openContextWithRecipe instead
Throws
May throw an exception.
openUrl
openUrl(
pLocation,pNewTab):void
Opens a URL on the client.
Parameters
string | number | booleanThe URL to open.
boolean'true' to open the URL in a new window, 'false' in the current window.
Returns
voidThrows
May throw an exception.
Example
neon.openUrl("https://www.dict.cc/?s=halozination", false);
refresh
refresh(
pFieldNames?):void
Refreshes specific fields within the current view (image) in the ADITO system. This method re-executes the processes for the specified fields, ensuring that the data is updated without resetting the field values to null or reloading them from the recordContainer.
If no fields are specified, all fields within the current view will be refreshed. This makes it an efficient choice for refreshing only necessary fields after data changes.
Important Note: When using neon.refresh(), only the processes associated with the fields are re-executed. The fields themselves are not reset to null.
Parameters
string[]an array of field names (as Strings) to refresh. - If null is passed, all fields in the current view (image) will be refreshed by invoking neon.refreshAll(). - If an empty array is passed, no action will be taken, and no fields will be refreshed. - If [null] is passed, all fields will be recalculated without reloading the data from the RecordContainer. - Fields should be referenced by their identifier, such as $field.STATUS. - To refresh multiple fields, pass them as an array of field identifiers.
Returns
voidThrows
May throw an exception.
Example
// Example 1: Refreshing all fields in the current view:
neon.refresh(); // Will refresh all fields of the current image (MainView)
// In this example, all fields in the current view (e.g., MainView) will be refreshed, ensuring any updates are reflected.
// Example 2: Refreshing specific fields in the current view:
neon.refresh(["$field.STATUS", "$field.DATE_EDIT"]); // Refreshes the STATUS and DATE_EDIT fields
// This will only refresh the specified fields (STATUS and DATE_EDIT) in the current view.
// Example 3: Ineffective refresh when checking for null in a process:
// Field.valueProzess
if (vars.get("$this.value") == null) {
result.string("defaultValue");
}
neon.refresh(); // The field value will not be reset to null, so the process won't reassign "Default Value"
// This shows that the refresh only re-executes the process. It does not reset the field value to null, so if the field was already set, the process won’t overwrite it.
Best Practices:
-
Use
neon.refresh()when you need to refresh specific fields and re-execute their processes, without resetting field values. -
If you need to reset the value of a field to null before recalculating, you must handle this manually in your process logic.
refreshAll
refreshAll():
void
Refreshes all fields in all views (images) within the ADITO system. This method re-executes all processes for all fields, actions and consumer across the entire application, ensuring that data and UI are fully updated in every view.
Unlike neon.refresh(), which only refreshes fields in the current view, neon.refreshAll() triggers a refresh for fields in every view, including the MainView, PreviewView, and any other open contexts. This makes it more comprehensive, but it can have a higher performance impact.
Important Note: Similar to neon.refresh(), this method only recalculates processes but does not reset field values to null. If a process checks whether a field's value is null (e.g., vars.get("$this.value") == null) and assigns a new value if the field is empty, the refresh will be ineffective in resetting the value. The processes will re-execute, but the fields will retain their existing values unless explicitly modified.
Best Practices:
-
Use
neon.refreshAll()only when you need to refresh fields across the entire application, as it may impact performance. -
If you only need to refresh fields in the current view, consider using
neon.refresh()for better performance.
Returns
voidThrows
May throw an exception.
Example
neon.refreshAll(); // Refreshes all fields in all images (MainView, PreviewView, etc.)
// In this example, all fields in all views will be refreshed, ensuring that any updates // in the application are reflected everywhere.
// Example 2: Ineffective refresh when checking for null in a process:
// Field.valueProzess if (vars.get("$this.value") == null) { result.string("DefaultValue") }
neon.refreshAll(); // The field value will not be reset to null, so the process won't reassign "Default Value"
// This shows that even though neon.refreshAll() re-executes processes for all fields, it does not reset their values to null. If a field already has a value, the process won’t overwrite it.
refreshAllNeonBadges
refreshAllNeonBadges():
void
Löst die Aktualisierung aller Badges aus
Returns
voidThrows
May throw an exception.
refreshBadge
refreshBadge(
pType):void
Löst die Aktualisierung eines Badges eines bestimmten Badge-Typs aus. Meist für die Aktualiserung in afterDelete benötigt.
Parameters
Returns
voidThrows
May throw an exception.
setFieldValue
setFieldValue(
pFieldName,pValue):void
Sets the value of a field.
Parameters
string | number | booleanThe name of the field.
string | number | booleanThe value to be set.
Returns
voidThrows
May throw an exception.
Example
neon.setFieldValue("$field.ORGNAME", "CCK Limited");
setFieldValues
setFieldValues(
pFieldValueMap):void
Sets the value of multiple fields.
Parameters
anyMap with the names and values of the fields
Returns
voidThrows
May throw an exception.
setFilter
setFilter(
pConsumerName,pFilter):void
Sets a filter to an entity
Parameters
string | number | booleanname of the consumer field within the current entity where the filter should be set
anythe filter, JSON - format as defined for entity-filters or a filter builder as created for example by neonFilter.createFilterCondition or neonFilter.createFilterGroup
Returns
voidThrows
May throw an exception.
updateRecord
updateRecord(
pConsumerName,pUid,pFieldnameValues):void
Updates a record linked by a consumer
Parameters
string | number | booleanName of the consumer, which should be used to write the record
string | number | booleanThe uid of the record
anyThe values as a map. E.g.: {Fieldname:Value, Fieldname2:Value}
Returns
voidThrows
May throw an exception.
Properties
BRAND_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the brandColor e.g Button Color
COMPONENTSTATE_AUTO
stringComponentState: Automatic, depending on Framemode
COMPONENTSTATE_DISABLED
stringComponentState: inaktiv
COMPONENTSTATE_EDITABLE
stringComponentState: editable
COMPONENTSTATE_INVISIBLE
stringComponentState: invisible
COMPONENTSTATE_READONLY
stringComponentState: read only
CONTEXT_PRESENTATIONMODE_DASHBOARD
stringContext Presentationmode: DASHBOARD
CONTEXT_PRESENTATIONMODE_EDIT
stringContext Presentationmode: EDIT
CONTEXT_PRESENTATIONMODE_EDIT_SMALL
stringContext Presentationmode: EDIT_SMALL
CONTEXT_PRESENTATIONMODE_FILTER
stringContext Presentationmode: FILTER
CONTEXT_PRESENTATIONMODE_FULL
stringContext Presentationmode: FULL
CONTEXT_PRESENTATIONMODE_LOOKUP
stringContext Presentationmode: LOOKUP
CONTEXT_PRESENTATIONMODE_PREVIEW
stringContext Presentationmode: PREVIEW
DEVICE_DESKTOP
stringType of device, used by "$sys.device": Desktop
DEVICE_HEADLESS
stringType of device, used by "$sys.device": Headless, e.g. used by webservices
DEVICE_MOBILE
stringType of device, used by "$sys.device": Mobile
DEVICE_TABLET
stringType of device, used by "$sys.device": Tablet
FRAME_VIEWMODE_DATASET
stringFrame Viewmode: DATASET
FRAME_VIEWMODE_TABLE
stringFrame Viewmode: TABLE
MODIFIER_TYPE_MASK
stringSource of a value change: mask
MODIFIER_TYPE_PROCESS
stringSource of a value change: process
MODIFIER_TYPE_PROCESS_SETVALUE
stringSource of a value change: process
MODIFIER_TYPE_RECORD
stringSource of a value change: data source
NOTIFICATION_BADGE
Notification never appeard on users screen.
OPERATINGSTATE_EDIT
stringOperatingState: EDIT
OPERATINGSTATE_NEW
stringOperatingState: NEW
OPERATINGSTATE_SEARCH
stringOperatingState: SEARCH
OPERATINGSTATE_VIEW
stringOperatingState: VIEW
PRIMARY_ACCENT_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the primaryAccentColor e.g Selection Color
PRIORITY_HIGH_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the priorityHighColor
PRIORITY_LOW_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the priorityLowColor
PRIORITY_MEDIUM_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the priorityMediumColor
PRIORITY_NONE_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the priorityNoneColor
PRIORITY_NORMAL_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the priorityNormalColor
READONLY_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the readonly color
RESOURCETIMELINE_ACTIVE_COLOR_1
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_10
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_11
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_2
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_3
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_4
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_5
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_6
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_7
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_8
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_ACTIVE_COLOR_9
stringColor Constant that holds the name of a CSS Selector which is used for an active resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_1
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_10
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_11
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_2
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_3
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_4
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_5
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_6
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_7
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_8
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
RESOURCETIMELINE_PASSIVE_COLOR_9
stringColor Constant that holds the name of a CSS Selector which is used for a passive resource within a resource timeline.
SECONDARY_ACCENT_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the secondaryAccentColor e.g Alternating Talbe Rows Color
SECONDARY_LIGHT_COLOR
stringColor Constant that holds the name of a CSS Selector which is used for the secondaryLightColor e.g default BadgeRenderer-Background
USER_COLOR_1
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_10
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_11
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_12
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_13
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_14
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_15
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_16
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_17
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_18
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_19
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_2
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_20
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_3
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_4
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_5
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_6
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_7
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_8
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
USER_COLOR_9
stringColor Constant that holds the name of a CSS Selector which is used for the specified userColor (e.g. Chart/Scorecard/Avatar Colors)
VALIDATION_CAUSE_MODIFY_CONSUMER
stringCause of validation: Consumer-Row is validated on modification.
VALIDATION_CAUSE_MODIFY_ENTITY
stringCause of validation: Entity is validated on modification.
VALIDATION_CAUSE_SAVE_CONSUMER
stringCause of validation: Consumer is validated before saving all pending rows.
VALIDATION_CAUSE_SAVE_ENTITY
stringCause of validation: Entity is validated before saving. This validation is also called for each row within a consumer.