CellFindAttrs Enumeration |
Cell attributes specific to
Find cells.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum CellFindAttrs
<FlagsAttribute>
Public Enumeration CellFindAttrs
Members
| Member name | Value | Description |
---|
| AutoSuggest | 16 | AutoSuggest selections based on partial entries typed by user. |
| NoUserSort | 32 | Do not allow user to choose a sort order when finding records. |
| NoLabelLink | 64 |
Do not make the field label a link when there is a related item.
See also NoListLink.
Note that you can restrict all navigation, by role, for this field by denying the Navigation permission.
|
| NoFilterDesc | 128 | Do not provide a filter description caption in the Find popup. |
| NoLiveLook | 4096 | Do not present the button with a 'live' look where button image livens when user hovers over it. |
| CascadingCombos | 8192 | Use cascading ComboBoxes, instead of TextBoxes, on ComboBox fields having discrims. |
| HideTextBox | 16384 | Hide the Find's TextBox. This is intended for use when the Find is used as a client-side programmatic element. |
| RepeatedSelect | 32768 | Allow user to select an item then repeatedly select additional items. |
| ShowLockedButtons | 65536 | Show locked buttons (which are normally hidden). This is typically used when the control is locked/unlocked in script. |
| NoTextBoxLock | 131072 | Don't lock the text box. |
| HtmlDescription | 262144 | The Find description (used in the Find dialog) is HTML and should not be escaped. |
| SizeSearchFields | 524288 | Size the search fields per each field's ColWidth in the find mapper. |
| FirstFieldAsSelector | 1048576 | Render the first visible data column in the Find datasheet as an item selector. |
| RequireFiltering | 2097152 | Require user to provide some filter criteria before searching. |
| BndLkupFiltering | 4194304 | In Find criteria use a BndLkup control with filter widget, instead of TextBox on appropriate fields. |
| ImmediateSearch | 8388608 | Perform an immediate search when the Find is first opened. Note that this generally is valuable only if that initial search is likely to return the desired item. |
| NewEntryOK | 16777216 | Allow user to enter new text not corresponding to a found item. If this is NOT set then user will be required to select an existing item from the Find popup or AutoSuggest. This option has no effect unless AutoSuggest is set. |
| NoListLink | 33554432 |
Do not make the field text (in a list) a link when there is a related item.
See also NoLabelLink.
Note that you can restrict all navigation, by role, for this field by denying the Navigation permission.
|
See Also