Excluding table rows

You can specify the business objects that will not be represented in the table component depending on their business classes. To do so, you need to specify the business classes to be excluded using method setExcludedClasses in the table component adapter. To retrieve the adapter, use the getAdapter method. The adapter must be an instance of a subclass of IlpListAdapter.

How to specify excluded classes in the table component

You can specify that business objects from specific business classes are not represented in the table component. You can do that using the API, setExcludedClasses method, or using CSS.
The following example shows you how to prevent objects from business classes IltAlarm and IltLed to be represented:
Adapter {
  excludedClasses[0]: "ilog.tgo.model.IltAlarm";
  excludedClasses[1]: "ilog.tgo.model.IltLed";
}
Note
The filtering that is performed through the use of the excluded class list takes actually place at the adapter level.
To see how to configure excluded classes through CSS, refer to The Adapter rule .