Book Image

Oracle Siebel CRM 8 Developer's Handbook

By : Alexander Hansal
Book Image

Oracle Siebel CRM 8 Developer's Handbook

By: Alexander Hansal

Overview of this book

Table of Contents (33 chapters)
Oracle Siebel CRM 8 Developer's Handbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface

Applet, control, and list column user properties


The Applet object type provides user properties on the applet level itself as well as on the control and list column level (for list applets only).

The following table describes some of the most important applet user properties:

User property

Description

CanInvokeMethod: methodname

This user property allows controlling whether a button or menu item on the applet is enabled (clickable) or disabled (grayed out and not clickable). The name of the method invoked by the button or by the command behind the menu item is specified as the second part of the name (after a colon and a space).

The value of this user property can be either a string—TRUE or FALSE or eventually Y or N—or an expression that must evaluate to TRUE or FALSE.

Example:

Name: CanInvokeMethod: CancelFunction

Value: [Freeze Flag] <> "Y"

Explanation:

Buttons or menu items exposing the CancelFunction method will only be clickable when the value of the Freeze Flag field is not...