Interface: IDataTableRowProxy¶
A designer-facing interface that provides access to DataTableRow.
Hierarchy¶
-
IDataTableRowProxy
Summary¶
Properties¶
Class Properties¶
Currently none in this class.
Inherited Properties¶
Methods¶
Class Methods¶
Inherited Methods¶
- base64StringToBinary
- binaryToBase64String
- callFunction
- convertFilterCriteriaArrayToJSONString
- convertJSONStringToFilterCriteriaArray
- count
- create
- createFilterCriteria
- createLinkSpecifierProxy
- deleteODataCacheImages
- dismissActivityIndicator
- downloadInProgressForPage
- downloadInProgressForReadLink
- evaluateTargetPath
- evaluateTargetPathForAPI
- executeAction
- formatBase64String
- formatCurrency
- formatDate
- formatDatetime
- formatNumber
- formatPercentage
- formatScientific
- formatTime
- getActionResult
- getAppClientData
- getAppearanceMode
- getAppEventData
- getAppName
- getAvailableThemes
- getBindingObject
- getCircularImage
- getClientData
- getDefinitionValue
- getEventData
- getGlobalDefinition
- getIconTextImage
- getIndex
- getLanguage
- getLogger
- getMobileServiceAppId
- getMobileServiceEndpointUrl
- getName
- getODataCacheImagePath
- getODataProvider
- getPageDefinition
- getPageProxy
- getParent
- getPasscodeSource
- getPendingDownload
- getReadLink
- getRegion
- getRegions
- getSAPPassportHeaderValue
- getSupportedLanguages
- getTheme
- getType
- getUseInAppCamera
- getVersionInfo
- initializeLogger
- isAppInMultiUserMode
- isCurrentPage
- isDemoMode
- isDeviceCompliant
- isMediaLocal
- localizeText
- read
- sendMobileServiceRequest
- sendRequest
- setApplicationIconBadgeNumber
- setDebugSettings
- setLanguage
- setRegion
- setTheme
- setUseInAppCamera
- showActivityIndicator
- updateProgressBanner
Methods¶
getCell¶
Call Signature¶
▸ getCell(columnIndex): IDataTableCellProxy
Get a specific cell from the current row given a column index.
Parameters¶
columnIndex¶
number
The column index.
Returns¶
Example¶
// Get cell at column 0 from the current row
const dataTableRowProxy = context;
const dataTableCell = dataTableRowProxy.getCell(0);
console.log(`Data table cell value: ${dataTableCell.getValue()}`);
Call Signature¶
▸ getCell(rowIndex, columnIndex): IDataTableCellProxy
Parameters¶
rowIndex¶
number
The row index.
columnIndex¶
number
The column index.
Returns¶
Deprecated¶
Use getCell(columnIndex) instead. Passing row index is no longer supported. Implemented to allow backwards compatibility.