OnDrillDown Method
The OnDrillDown method drills down on a control. It returns one of the following values:
true. Drilldown succeeded.
false. Drilldown failed because an error occurred on the client or on the Siebel Server.
It uses the following syntax:
OnDrillDown(control_name, rowId);
where:
control_name identifies the name of the control where Siebel Open UI does the drilldown.
rowId is a number of zero through n, where n is the maximum number of rows that the list applet displays. This number identifies the row that contains the control where Siebel Open UI does the drilldown.
For example, the following code drills down on the my_accounts control. The counter identifies the row that contains this control. For more information about how another example uses this counter, see OnCtrlBlur Method:
this.ExecuteMethod("OnDrillDown", my_accounts, counter);
For more information about using this method, see Life Cycle Flows of User Interface Elements.