ilog.cpl.table.css
Interface IlpTableClassCustomization


public interface IlpTableClassCustomization

This interface contains all the properties that can be customized regarding the accepted business class parameter in the Table Component.

The table accepted class can be configured like this in a CSS file:

 object."Alarm" {
   tableColumnOrder: "identifier, creationTime, acknowledged, perceivedSeverity";
   tableRowHeight: 25;
 }
 object."ilog.tgo.model.IltNetworkElement" {
   tableRowHeight: 30;
 }
 

Since:
JTGO 3.5

Method Summary
 String getTableColumnOrder()
          Returns the column order to be used by a table.
 int getTableRowHeight()
          Returns the height of the rows in a table.
 

Method Detail

getTableColumnOrder

String getTableColumnOrder()
Returns the column order to be used by a table.

The value of this property should be column identifiers separated by commas to define the order of the columns.

The default value is null, which means that the table keeps its default order.

The following example illustrates the use of the property:

 object."Alarm" {
   tableColumnOrder: "identifier, creationTime, acknowledged, perceivedSeverity";
 }
 

See Also:
IlpObjectKeys.TableColumnOrder

getTableRowHeight

int getTableRowHeight()
Returns the height of the rows in a table.

Default value: 16.

The default value will be used if a negative value is specified.

The following example illustrates the use of the property:

 object."Alarm" {
   tableRowHeight: 25;
 }
 

See Also:
IlpObjectKeys.TableRowHeight


Copyright © 1996-2007 ILOG S.A. All rights reserved.   Documentation homepage.   . All Rights Reserved.