Child pages
  • JSRecord
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 31 Next »

Refresh page Mar 28, 2024 21:29

Supported Clients
SmartClient WebClient NGClient MobileClient

Property Summary
Exception exception Returns last occurred exception on this record (or null).
JSFoundSet foundset Returns parent foundset of the record.

Methods Summary
JSDataSet getChangedData() Returns a JSDataSet with outstanding (not saved) changed data of this record.
String getDataSource() Returns the records datasource string.
Array getPKs() Returns an array with the primary key values of the record.
Boolean hasChangedData() Returns true if the current record has outstanding/changed data.
Boolean isEditing() Returns true or false if the record is being edited or not.
Boolean isNew() Returns true if the current record is a new record or false otherwise.
void revertChanges() Reverts the in memory outstanding (not saved) changes of the record.

Property Details

exception

Returns last occurred exception on this record (or null).

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var exception = record.exception;

foundset

Returns parent foundset of the record.

Returns

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

Sample

var parent = record.foundset;

Methods Details

getChangedData()

Returns a JSDataSet with outstanding (not saved) changed data of this record.
column1 is the column name, colum2 is the old data and column3 is the new data.

NOTE: To return an array of records with outstanding changed data, see the function databaseManager.getEditedRecords().

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

/** @type {JSDataSet} */
var dataset = record.getChangedData()
for( var i = 1 ; i <= dataset.getMaxRowIndex() ; i++ )
{
	application.output(dataset.getValue(i,1) +' '+ dataset.getValue(i,2) +' '+ dataset.getValue(i,3));
}

getDataSource()

Returns the records datasource string.

Returns

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

Sample

var ds = record.getDataSource();

getPKs()

Returns an array with the primary key values of the record.

Returns

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

Sample

var pks = foundset.getSelectedRecord().getPKs() // also foundset.getRecord can be used

hasChangedData()

Returns true if the current record has outstanding/changed data.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var hasChanged = record.hasChangedData();

isEditing()

Returns true or false if the record is being edited or not.

This will not check if the record doesn't really have any changes, it just returns the edit state.
So this can return true but databaseManager.getEditedRecord() will not return this record because that
call will check if the record has really any changed values compared to the stored database values.

Returns

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

Sample

var isEditing = foundset.getSelectedRecord().isEditing() // also foundset.getRecord can be used

isNew()

Returns true if the current record is a new record or false otherwise.

Returns

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

Sample

var isNew = foundset.getSelectedRecord().isNew();

revertChanges()

Reverts the in memory outstanding (not saved) changes of the record.

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

Sample

var record= %%prefix%%foundset.getSelectedRecord();
record.revertChanges();

  • No labels