WebSphere Commerce EnterpriseWebSphere Commerce Professional

rowDatas

The com.ibm.commerce.telesales.widgets.rowDatas extension point is used to declare row data for use in the IBM Sales Center user interface. Row composite declarations can refer to row data declarations.

Identifier:

com.ibm.commerce.telesales.widgets.rowDatas

Description:

The com.ibm.commerce.telesales.widgets.rowDatas extension point is used to declare row data for use in the IBM Sales Center user interface. Row composite declarations can refer to row data declarations.

Configuration Markup:

<!ELEMENT extension ( rowData+)>

<!ATTLIST extension

point CDATA #REQUIRED

id CDATA #IMPLIED

name CDATA #IMPLIED>

  • point - The fully qualified identifier of the target extension point.
  • id - An optional identifier for the target extension point.
  • name - An optional name for the extension instance.

<!ELEMENT rowData EMPTY>

<!ATTLIST rowData

height CDATA #IMPLIED

width CDATA #IMPLIED

id CDATA #REQUIRED>

This element is used to describe instances of org.eclipse.swt.layout.RowData objects. These declarations can be used by rowCompositeDefinition declarations of the com.ibm.commerce.telesales.widgets.compositeDefinitions extension point.

  • height - The height of the cell in pixels.
  • width - The width of the cell in pixels.
  • id - Unique identifier for this row data declaration. Use this identifier to refer to this row data. It may be necessary to fully qualify references to this identifier if the reference is made from a different namespace context.

Examples:


 
 <extension point=
 "com.ibm.commerce.telesales.widgets.rowDatas"
 >
    
 <rowData id=
 "buttonRowData"
  width=
 "76"
  height=
 "23"
 />
 
 </extension>

API Information:

See

org.eclipse.swt.layout.RowData

.

Supplied Implementation:

Many of the editors, dialogs, and views provided with the IBM Sales Center editor have made use of the rowDatas extension point in their declaration.