Show TOC Start of Content Area

Object documentation TableScrollTipProvider  Locate the document in its SAP Library structure

Definition

This graphic is explained in the accompanying text

As long as the table visualizes a scrollbar, the application developer can apply ScrollTips. These help the user to navigate in the table while scrolling. This feature makes it possible to apply information text for a specific range in the scrollbar. If the user scrolls, the information text is displayed next to the scrollbar handle while scrolling in the specified range.

 

Description of UI Element Properties

      dataSource

Determines the data source of the TableScrollTipProvider. You can use this to specify the path to the context node providing the data.

      startRow

Specifies the starting point of the range. The end of the range is specified by the next ScrollTip or by the end of the whole collection.

      text

The underlying information text for the specified range

 

Properties Overview

Name

Interface

Type

Initial Value

Bindable

dataSource

IWDTableScrollTipProvider

Object

 

bindable_mandatory

startRow

IWDTableScrollTipProvider

int

0

bindable_mandatory

text

IWDTableScrollTipProvider

String (Translatable text)

 

bindable_mandatory

 

Data Binding

As illustrated in the screenshot below, the context for the TableScrollTipProvider should look like this:

This graphic is explained in the accompanying text

Bind the properties to the context:

      dataSource to the node (in this example called ScrollTips)

      startRow to an attribute inside this node, of type integer and

      text to an attribute of type string.

End of Content Area