constructor __construct [line 80]
method CommonScript [line 367]
This is an internal method you don't need to call directly
It dumps the common javascript code to update the control if used inside an Ajax call
Tags:
method defaultAction [line 495]
method defaultButtonLayout [line 551]
void defaultButtonLayout(
)
|
|
method defaultButtonType [line 644]
void defaultButtonType(
)
|
|
method defaultImageClicked [line 579]
void defaultImageClicked(
)
|
|
method defaultImageDisabled [line 572]
void defaultImageDisabled(
)
|
|
method defaultImageSource [line 525]
void defaultImageSource(
)
|
|
method defaultKind [line 565]
method defaultOnClick [line 434]
method defaultSpacing [line 599]
method dumpContents [line 184]
method dumpForAjax [line 179]
This is an internal method you don't need to call directly
This method is called by the Ajax engine to get the code to update the component after an ajax call
Tags:
method dumpJavascript [line 125]
method getAction [line 493]
Reserved for future use
The goal of this property is to link ActionList components with visual components to provide an easy way to execute actions.
method getButtonLayout [line 549]
Specifies the position where the image appears on the bitmap button.
ButtonLayout indicates whether the text appears on the left of the button (blImageLeft), the right of the button (blImageRight), the top (blImageTop) or the bottom (blImageBottom). To specify the image will be shown, check ImageSource property.
Possible values for this property are:
blImageBottom - Image will be placed at the bottom
blImageLeft - Image will be placed at the left
blImageRight - Image will be placed at the right
blImageTop - Image will be placed at the top
Tags:
method getButtonType [line 642]
Determines the type of button you want to create, this type determines also some built-in functions for buttons inside HTML forms.
A BitBtn can have 3 different types:
btSubmit - submits the HTML form
btReset - resets the HTML form back to the initial values
btNormal - is a regular button, the browser does not submit the form if no OnClick event has been assigned
Tags:
method getCaption [line 472]
method getColor [line 475]
method getEnabled [line 481]
method getFont [line 478]
method getImageClicked [line 577]
This image appears when the button is clicked. The Up image reappears when the user releases the mouse button.
method getImageDisabled [line 570]
This image usually appears dimmed to indicate that the button can't be selected.
method getImageSource [line 523]
Specifies the image that appears on the bitmap button.
This property determines the URL where to find the image to be used as bitmap for this button. If empty no image is rendered on the button and you have to be sure the image is accesible to the web server. The image will be placed according to the setting of ButtonLayout property.
<?php
function Button1Click($sender, $params)
{
//Assigns an image to be shown on the bitbtn
$this->BitBtn1->ImageSource="images/btnok.gif";
}
?>
Tags:
method getjsOnBlur [line 436]
method getjsOnClick [line 439]
method getjsOnDblClick [line 442]
method getjsOnFocus [line 445]
method getjsOnKeyDown [line 466]
method getjsOnKeyPress [line 463]
method getjsOnKeyUp [line 469]
method getjsOnMouseDown [line 448]
method getjsOnMouseMove [line 457]
method getjsOnMouseOut [line 460]
method getjsOnMouseOver [line 454]
method getjsOnMouseUp [line 451]
method getKind [line 563]
enum(bkCustom, getKind(
)
|
|
Specifies the kind of bitmap button.
Use Kind to specify the appearance of the BitBtn control.
The images (such as the green check mark on the OK button) appear on the button when using this version of BitBtn.
Tags:
method getOnClick [line 432]
Occurs when the user clicks the control.
Use the OnClick event handler to respond when the user clicks the control.
Usually OnClick occurs when the user presses and releases the left mouse button with the mouse pointer over the control. This event can also occur when:
The user selects an item in a grid, outline, list, or combo box by pressing an arrow key.
The user presses Spacebar while a button or check box has focus.
The user presses Enter when the active form has a default button (specified by the Default property).
The user presses Esc when the active form has a cancel button (specified by the Cancel property).
method getParentColor [line 601]
method getParentFont [line 605]
method getParentShowHint [line 608]
void getParentShowHint(
)
|
|
method getPopupMenu [line 611]
method getShowHint [line 614]
method getSpacing [line 597]
Determines where the image and text appear on a bitmap button.
Spacing determines the number of pixels between the image (specified in the Image properties) and the text (specified in the Caption property). The default value is 4 pixels.
If Spacing is a positive number, its value is the number of pixels between the image and text. If Spacing is 0, no pixels will be between the image and text. If Spacing is -1, the text appears centered between the image and the button edge. The number of pixels between the image and text is equal to the number of pixels between the text and the button edge opposite the glyph.
method getVisible [line 617]
method init [line 109]
method setAction [line 494]
method setButtonLayout [line 550]
void setButtonLayout(
$value)
|
|
Parameters:
method setButtonType [line 643]
void setButtonType(
$value)
|
|
Parameters:
method setCaption [line 473]
method setColor [line 476]
method setEnabled [line 482]
method setFont [line 479]
method setImageClicked [line 578]
void setImageClicked(
$value)
|
|
Parameters:
method setImageDisabled [line 571]
void setImageDisabled(
$value)
|
|
Parameters:
method setImageSource [line 524]
void setImageSource(
$value)
|
|
Parameters:
method setjsOnBlur [line 437]
void setjsOnBlur(
$value)
|
|
Parameters:
method setjsOnClick [line 440]
void setjsOnClick(
$value)
|
|
Parameters:
method setjsOnDblClick [line 443]
void setjsOnDblClick(
$value)
|
|
Parameters:
method setjsOnFocus [line 446]
void setjsOnFocus(
$value)
|
|
Parameters:
method setjsOnKeyDown [line 467]
void setjsOnKeyDown(
$value)
|
|
Parameters:
method setjsOnKeyPress [line 464]
void setjsOnKeyPress(
$value)
|
|
Parameters:
method setjsOnKeyUp [line 470]
void setjsOnKeyUp(
$value)
|
|
Parameters:
method setjsOnMouseDown [line 449]
void setjsOnMouseDown(
$value)
|
|
Parameters:
method setjsOnMouseMove [line 458]
void setjsOnMouseMove(
$value)
|
|
Parameters:
method setjsOnMouseOut [line 461]
void setjsOnMouseOut(
$value)
|
|
Parameters:
method setjsOnMouseOver [line 455]
void setjsOnMouseOver(
$value)
|
|
Parameters:
method setjsOnMouseUp [line 452]
void setjsOnMouseUp(
$value)
|
|
Parameters:
method setKind [line 564]
method setOnClick [line 433]
method setParentColor [line 602]
void setParentColor(
$value)
|
|
Parameters:
method setParentFont [line 606]
void setParentFont(
$value)
|
|
Parameters:
method setParentShowHint [line 609]
void setParentShowHint(
$value)
|
|
Parameters:
method setPopupMenu [line 612]
void setPopupMenu(
$value)
|
|
Parameters:
method setShowHint [line 615]
void setShowHint(
$value)
|
|
Parameters:
method setSpacing [line 598]
method setVisible [line 618]