Table Node
Last updated
Last updated
Table nodes store Servoy specific information/functionality related to DB tables such as script calculations, aggregations and table events.
Type | Name | Summary |
---|---|---|
Type | Name | Summary |
---|---|---|
Type Object
A method that is executed after a new record is created.
Parameters
JSRecord record record that is created
Returns: void
A method that is executed after a delete operation.
Parameters
JSRecord record record that is deleted
Returns: void
A method that is executed after a foundset has switched to find mode.
Returns: void
A method that is executed after an insert operation.
Parameters
JSRecord record record that is inserted
Returns: void
A method that is executed after a search is executed for a foundset.
Returns: void
A method that is executed after an update operation.
Parameters
JSRecord record record that is updated
Returns: void
A method that is executed before a record is created. The method can block the creation by returning false.
Returns: Boolean
A method that is executed before a delete operation. The method can block the delete operation by returning false.
Parameters
JSRecord record record that will be deleted
Returns: Boolean
A method that is executed before a foundset is going into find mode. The method can block the mode change.
Returns: Boolean
A method that is executed when an in memory or viewfoundset table is first touched (by ui or scripting)
Parameters
String memOrViewName The in memory or view foundset table name that is touched.
Returns: void
A method that can be used to load extra data in an in memory datasource.
This method id called when the inMem datasource is fully read.
Parameters
String inmemDataSourceName name of the inmemory datasource.
Number sizeHint preferred number of records to be retrieved.
Returns: JSDataSet
A method that is executed before an insert operation. The method can block the insert operation by returning false.
Parameters
JSRecord record record that will be inserted
JSRecordMarkers recordMarkers the object where all the problems can be reported against
Object stateObject an object that a user can give to validateRecord for extra state (optional, can be null).
Returns: Boolean
A method that is executed before search() is called on a foundset in find mode. The method can block the search (foundset will stay in find mode).
Parameters
Returns: Boolean
A method that is executed before an update operation. A method can block the update by returning false.
Parameters
JSRecord record record that will be updated
JSRecordMarkers recordMarkers the object where all the problems can be reported against
Object stateObject an object that a user can give to validateRecord for extra state (optional, can be null).
Returns: Boolean
A method that is executed before an insert operation. The method can block the insert operation by returning false.
Parameters
JSRecord record record that must be validated
JSRecordMarkers recordMarkers the object where all the problems can be reported against.
Object stateObject an object that a user can give to validateRecord for extra state (optional, can be null).
Returns: void
void
A method that is executed after a new record is created.
void
A method that is executed after a delete operation.
void
A method that is executed after a foundset has switched to find mode.
void
A method that is executed after an insert operation.
void
A method that is executed after a search is executed for a foundset.
void
A method that is executed after an update operation.
A method that is executed before a record is created.
A method that is executed before a delete operation.
A method that is executed before a foundset is going into find mode.
void
A method that is executed when an in memory or viewfoundset table is first touched (by ui or scripting)
A method that can be used to load extra data in an in memory datasource.
A method that is executed before an insert operation.
A method that is executed before search() is called on a foundset in find mode.
A method that is executed before an update operation.
void
A method that is executed before an insert operation.