Skip to content

pbSelectAllCheckbox - cWebColumnSelectionIndicator

Provides an additional checkbox in the header to select all items on the client

Type: Property
Access: Read/Write
Data Type: Boolean
Parameters: None

Syntax

{ WebProperty=Client }
Property Boolean pbSelectAllCheckbox
Access Type Syntax
Read Access: WebGet pbSelectAllCheckbox to BooleanVariable
Write Access: WebSet pbSelectAllCheckbox to BooleanVariable/Value

Description

This provides an additional checkbox in the header to select all items on the client.

Warning: If you do use this additional checkbox, the peDbGridType property of the parent cWebMultiSelectList object should be set to gtAllData. Otherwise, not all times will actually be selected unless you have custom logic in the OnSelectAllRows/OnDeSelectAllRows events of the parent cWebMultiSelectList object.

// Adds a checkbox column to the WebList for selecting entries.
Object oMultiSelect is a cWebColumnSelectionIndicator
    Set piWidth to 86
    Set pbSelectAllCheckbox to True
End_Object

About Web Properties

Each web property maintains two values: The regular property value is set during object creation and should not be changed during the lifetime of that object. To access that value, use the standard property Get and Set syntax.

The web property value is the local value stored at each client. This is synchronized to the client's local value whenever a server call is being processed. To access the web property value, use the WebGet and WebSet syntax above instead of the standard Get and Set syntax.

About Web Properties

Each web property maintains two values: The regular property value is set during object creation and should not be changed during the lifetime of that object. To access that value, use the standard property Get and Set syntax.

The web property value is the local value stored at each client. This is synchronized to the client's local value whenever a server call is being processed. To access the web property value, use the WebGet and WebSet syntax above instead of the standard Get and Set syntax.