Abstract
The type of the container instance.
The type of the container instance.
Flag indicating whether a container is a valid jump target or not.
The type of the container instance
The type of the container instance.
Returns a column by a GUID.
GUID of the column.
Returns all columns.
Returns the wrapping object representing the table column (respectively control) for an specific table record.
Returns a specific column for given control GUID.
Returns a jQuery list with all columns.
Returns specific record for given record identifier.
Returns a jQuery list with all records of the current table page.
Asynchronous reload of a table.
Optional
settings: DataRangeReloadSettingsvar table = ix.util.getUp("[TABLE-GUID]");
table.reload({
bAsync: true,
bAddHistory: true,
bWaitAnimation: false,
oRequestMap: {
rq_Test: '1',
rq_Test: '2'
}
});
var table = ix.util.getUp("[TABLE-GUID]");
$.when(table.reload())
.then(function() {
alert("done");
})
.fail(function() {
alert("failed");
});
Represents a table and provides generic methods for
UpTable
andUpShapedTable
.