BBjInputD
Description
In BBj 4.00 and higher, the BBjInputD object provides methods for manipulating a GUI date control.
Implemented Interfaces
DragSource, DropTarget, Editable, Focusable, RecordSetBindable, SimpleRecordSetBindable, TabTraversable, TextAlignable, TextControl, Validateable
Creation
BBjAPI > BBjSysGui > BBjWindow > BBjInputD
A BBjInputD object is created through the following BBjWindow methods:
Return Value |
Method |
---|---|
BBjInputD | addInputD() |
BBjInputD | addInputD(int ID) |
BBjInputD |
|
BBjInputD |
addInputD(int ID, number x, number y, number w, number h, string flags) |
BBjInputD |
addInputD(int ID, number x, number y, number w, number h, string flags, string mask) |
BBjInputD |
addInputD(int ID, number x, number y, number w, number h, string flags, string mask, string rules) |
BBjInputD |
addInputD(int ID, number x, number y, number w, number h, string flags, string mask, string rules, int restore, int value) |
BBjInputD | addInputD(int ID, String flags) |
BBjInputD | addInputD(int ID, String flags, String mask) |
BBjInputD | addInputD(int ID, String flags, String mask, string rules) |
BBjInputD | addInputD(int ID, String flags, String mask, string rules, int restore, int value) |
BBjInputD |
addInputD(String flags) |
BBjInputD | addInputD(String flags, String mask) |
BBjInputD | addInputD(String flags, String mask, string rules) |
BBjInputD | addInputD(String flags, String mask, string rules, int restore, int value) |
Methods of BBjInputD
Return Value |
Method |
---|---|
void |
calendar() |
boolean |
getBeep() |
int |
|
string |
|
int |
getError() |
boolean |
|
boolean |
|
int |
|
string |
|
int |
|
string |
getMask() |
boolean |
|
boolean |
|
boolean |
|
string |
|
boolean |
|
int |
getValue() |
boolean |
|
boolean |
isValid() |
void |
restore() |
void |
|
void |
setBeep(int beep) |
void |
setCalendarSize(number width, int height) |
void |
setCaretPosition(int pos) |
void |
setEditable(boolean editable) |
void |
setEditString(string edit) |
void |
setHighlight(boolean highlight) |
void |
setInsertMode(boolean insert) |
void |
setLength(int length) |
void |
setLocale(String locale) |
void |
setMargin(int marginWidth) |
void |
setMask(string mask) |
void |
setPassEnter(boolean pass) |
void |
setPassTab(boolean pass) |
void |
setRestore(string restore) |
void |
setPlusMinus(boolean pass) |
void |
setShowWeeks(boolean show) |
void |
setTodayColor(BBjColor color) |
void |
setValue(int value) |
void |
setWeekdayColor(BBjColor color) |
void |
setWeekendColor(BBjColor color) |
Methods of BBjInputD implemented for DragSource
Return Value | Method |
---|---|
int | getDragActions() |
string | getDragType() |
void | setDragActions(int actions) |
void | setDragType(string type) |
Methods of BBjInputD implemented for DropTarget
Return Value | Method |
---|---|
int | getDropActions() |
void | setDropActions(int actions) |
BBjVector | getDropTypes() |
void | setDropTypes(BBjVector types) |
Methods of BBjInputD implemented for Editable
Return Value | Method |
---|---|
boolean | isEditable() |
void | setEditable(boolean edit) |
Methods of BBjInputD implemented for Focusable
Return Value | Method |
---|---|
boolean | isFocusable() |
void | setFocusable(boolean focus) |
Methods of BBjInputD implemented for RecordSetBindable
Return Value | Method |
---|---|
void | bindRecordSet(BBjRecordSet recordset!, string fieldname) |
string | getBoundFieldName() |
Methods of BBjInputD implemented for SimpleRecordSetBindable
Return Value | Method |
---|---|
BBjRecordSet | getBoundRecordSet() |
void | unbindRecordSet() |
Methods of BBjInputD implemented for TabTraversable
Return Value | Method |
---|---|
boolean | isTabTraversable() |
void | setTabTraversable(boolean trav) |
Methods of BBjInputD implemented for TextAlignable
Return Value | Method |
---|---|
int | getAlignment() |
void | setAlignment(int align) |
Methods of of BBjInputD implemented TextControl
Methods of BBjInputD implemented for Validateable
Return Value | Method |
---|---|
void | accept(boolean valid) |
string | getValidationText() |
Methods of BBjInputD inherited from BBjControl
Events
Callback Code |
Object-oriented Event |
Read Record Event |
Code |
---|---|---|---|
ON_CONTROL_VALIDATION |
v |
||
ON_DROP_TARGET_DROP |
D |
||
ON_EDIT_MODIFY |
e |
||
ON_GAINED_FOCUS |
f |
||
ON_INPUT_KEYPRESS |
N (Notify Code 1) |
||
ON_LOST_FOCUS |
f |
||
ON_MOUSE_ENTER |
E |
||
ON_MOUSE_EXIT |
E |
||
ON_POPUP_REQUEST |
r |
||
ON_RIGHT_MOUSE_DOWN |
R |
CSS
The visual appearance of BUI controls is defined using CSS (cascading style sheets) rules. Easily change the default colors, border, and other settings by customizing these rules, all without changing any application code. See CSS API for a high-level overview of BUI CSS.
The BBjInputD control is two separate elements. The edit box itself is an <input type="text"> element, styled with the .BBjInputD class name.
.BBjInputD
.BBjInputD.bbj-disabled
.BBjInputD.bbj-focused
.BBjInputD.bbj-readonly
Remarks
To display the selection calendar, press CTRL+P in GUI and the down arrow in BUI.
Constants inherited from BBjControl
Example
|
See Also
INPUTD Mnemonic - Create Date Edit (INPUTD) Control
CALLBACK Verb - Register BBj Subroutine
DWC Component: dwc-datefield
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.