Skip to main content
Version: 2026.0

UpdateRowConfig

Methods

addParameter

addParameter(pName, pValue): UpdateRowConfig

Adds a parameter value when loading the entity

Parameters

pName
string | number | boolean

name of parameter

pValue
string | number | boolean

value of parameter

Returns

UpdateRowConfig

consumer

consumer(pConsumer): UpdateRowConfig

Sets the name of the consumer, which points to the entity to use

Parameters

pConsumer
string | number | boolean

name of consumer

Returns

UpdateRowConfig

count

count(pCount): UpdateRowConfig

Sets the maximum number of rows to load.

Parameters

pCount
number

number of rows

Returns

UpdateRowConfig

entity

entity(pEntity): UpdateRowConfig

Sets the name of the entity to load

Parameters

pEntity
string | number | boolean

name of entity

Returns

UpdateRowConfig

fields

fields(pFields): UpdateRowConfig

Sets the name of the fields to load

Parameters

pFields
string[]

the name of fields

Returns

UpdateRowConfig

fieldValues

fieldValues(pNewFieldValues): UpdateRowConfig

Sets the field values for this entity

Parameters

pNewFieldValues
any

the new field values

Returns

UpdateRowConfig

filter

filter(pFilter): UpdateRowConfig

Sets a filter when loading the entity Can contain the filter in json format as a string or a filter builder using neonFilter.createFilterGroup()

Parameters

pFilter
any

the filter, JSON - format as defined for entity-filters

Returns

UpdateRowConfig

fromEntityRecordsRecipe

fromEntityRecordsRecipe(pEntityRecordsRecipe): UpdateRowConfig

This method is reserved for future use.

Parameters

pEntityRecordsRecipe
any

Returns

UpdateRowConfig

Throws

May throw an exception.


ignorePermissions

ignorePermissions(pIgnore): UpdateRowConfig

Ignores permissions, which are set for this entity

Parameters

pIgnore
boolean

true ignores permissions, default is false

Returns

UpdateRowConfig

locale

locale(pLocale): UpdateRowConfig

Overwrites the locale to be used for execution. Only possible in a server process.

Parameters

pLocale
string | number | boolean

the locale to be used for execution

Returns

UpdateRowConfig

provider

provider(pProvider): UpdateRowConfig

Sets the name of the provider for loading the entity

Parameters

pProvider
string | number | boolean

name of provider

Returns

UpdateRowConfig

skipPrevalidation

skipPrevalidation(pSkip): UpdateRowConfig

Skips the pre-validation of changes in the entity

Parameters

pSkip
boolean

true skips the pre-validation false

Returns

UpdateRowConfig

startrow

startrow(pStartRow): UpdateRowConfig

Sets the starting row to load. Useful for paging

Parameters

pStartRow
number

the number of the row to start, 0 ist first

Returns

UpdateRowConfig

timezone

timezone(pTimezone): UpdateRowConfig

Overwrites the timezone to be used for execution. Only possible in a server process.

Parameters

pTimezone
string | number | boolean

the timezone to be used for execution

Returns

UpdateRowConfig

uid

uid(pUid): UpdateRowConfig

Set a single uid to load when loading the entity. Overrides uids().

Parameters

pUid
string | number | boolean

value of uid

Returns

UpdateRowConfig

uids

uids(pUids): UpdateRowConfig

Sets multiple uids to load when loading the entity. Overrides uid().

Parameters

pUids
string[]

values if uids

Returns

UpdateRowConfig

user

user(pUser): UpdateRowConfig

Overwrites the user to be used for execution. Only possible in a server process.

To perform an entities-action in a serverProcess with a user given here the process itself has to be run under an user-context. So this will only overwrite which user is used but it is not possible to run a serverProcess without an user-context and then set the user with this method. That is due to technical restrictions how and when the Package entities.*** is created within JDito.

In short: Set at least a technical user to execute the serverProcess when using this property in a serverProcess.

Parameters

pUser
string | number | boolean

the title for the user to be used for execution

Returns

UpdateRowConfig