Hierarchy

  • TableReloadSettings

Properties

bAddHistory?: boolean

Add HTML history entry.

Example

// Get table
var tableCtrl = ix.api.dom.getControl("<TABLE-GUID>");
// Reload table with history entry
tableCtrl.reload({
bAddHistory: true,
});
bAsync?: boolean

Load async.

Example

// Get table
var tableCtrl = ix.api.dom.getControl("<TABLE-GUID>");
// Reload table async
tableCtrl.reload({
bAsync: true,
});
bWaitAnimation?: boolean

Show wait animation.

Example

// Get table
var tableCtrl = ix.api.dom.getControl("<TABLE-GUID>");
tableCtrl.reload({
bWaitAnimation: true,
});
gotoAnchor?: boolean

Scroll into view if possible.

Example

// Get table
var tableCtrl = ix.api.dom.getControl("<TABLE-GUID>");
// Reload table and scroll into view
tableCtrl.reload({
gotoAnchor: true,
});
oRequestMap?: any

Request parameters.

Example

// Get table
var tableCtrl = ix.api.dom.getControl("<TABLE-GUID>");
// Reload table with request parameters
tableCtrl.reload({
oRequestMap: {
rq_company: 'INTREXX',
rq_city: 'Freiburg'
}
});