pbServerOnAutoFind - cWebBaseDEO

Determines whether the OnAutoFind event is sent to the server when the control performs an AutoFind operation

Type: Property (Web Property)

Access: Read/Write

Data Type: Integer

Parameters: None

Syntax
 { WebProperty=Client }
 Property Integer pbServerOnAutoFind

Web Property Read Access: WebGet pbServerOnAutoFind to IntegerVariable
Web Property Write Access: WebSet pbServerOnAutoFind to IntegerVariable/Value

Read Access: Get pbServerOnAutoFind to IntegerVariable
Write Access: Set pbServerOnAutoFind to IntegerVariable/Value


Description

AutoFind is only supported if the control has a data binding (Entry_Item) and the data binding is to an indexed field. If these conditions are satisfied and the pbServerOnAutoFind property is set to True, then the DataFlex object representing that control will receive the OnAutoFind event.

If you set this property to False, it is equivalent to disabling the server-side AutoFind operation for the control. Normally, you would not set this property directly. Instead you should control AutoFind support by manipulating the DataDictionary's DD_AutoFind setting.

An advanced use of this property might be when you are building special client-side AutoFind support. In that case, you may need to set pbServerOnAutoFind to False.


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.
See Also

OnAutoFind | psClientOnAutoFind