Calls used

 

Calls used to create and destroy dialog boxes

Object:createJBox (ident: in String, title: in String,

                   direction: in JLayoutType,

                   consultMode: boolean)

return JBox

This creates a JBox object that corresponds to a modal dialog box.

 

If the consultMode parameter has been set to true, then none of the dialog box elements will be modifiable, and only the "OK" button will remain.

 

 

Object:createJNoModalBox (ident: in String,

                     title: in String,

                     direction: in JLayoutType,

                     profileNameCB: in String,

                     operationNameOkCB: in String,

                     operationNameCancelCB: in String)

return JNoModalBox

This creates a JNoModalBox object corresponding to a non-modal dialog box.

 

The last three parameters are used to position call backs on the "OK" and "Cancel" buttons.  They represent respectively:

·         Profilename: the complete name of the profile where the call back method is defined

·         operationNameOkCB: the name of the operation called on the OK action

·         operationNameCancelCB: the name of the operation called on the Cancel action

 

 

JSet:delete ()

This destroys the JSet dialog box.

 

You are responsible for destroying the dialog box, whether its creation is included in a session or not.

 

An identifier must be unique within a JSet, in the same way as each dialog box must have a unique identifier.

 

 

Calls used to retrieve dialog boxes

Object:getJSet (identSet: in String)

       return JSet

 

This retrieves the dialog box (modal or non-modal) that has identSet as its identifier.