|
Checks if postback should be raised when click event occurs.
Boolean. True - control raises postback to server on click event.
|
|
Gets background color for a particular state of button.
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state.
String. Background color.
|
|
Gets border color for a particular state of button.
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state.
|
|
Value of the ClientID property on server.
String. Value of ClientID.
|
|
Gets if display is inline or block.
String. Value of the DisplayMode property on server.
|
|
Object. Read only. Reference to the main html element that renders WebImageButton.
if(button == null) return;
var realWidthOfButton = button.getElement().offsetWidth;
Object. Reference to html element.
|
|
Gets reference to the main html element that renders a particular part of WebImageButton.
var button = ig_getWebControlById("WebImageButton1");
if(button == null) return;
var span = button.getElementAt(3);
var widthOfText = span ? span.offsetWidth : 0;
var input = button.getElementAt(0);
var accessKey = input.accessKey;
Numeric. Flag for a particular element. Possible values: 0 - INPUT, 1 - main TABLE, 2 - outer TABLE, 3 - SPAN for text, 4 - IMG for image, 5 - main TD, 6 - TD for top/right corner, 7 - TD for bottom/left corner, 8 - TD for bottom/right corner, 9 - inner TABLE, 11..30 - TDs of rouded corners built by table cells.
Object. Reference to html element or null.
|
|
Checks if control is enabed.
Boolean. True - control is enabled.
|
|
Checks if control can get input focus.
Boolean. True - control can get focus.
|
|
Gets foreground color for a particular state of button.
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state.
String. Foreground color.
|
|
Value of the internal ID used to identify this WebImageButton among other objects located in ig_all.
String. Value of internal id.
|
|
Gets name of url that contains image for a particular state of button.
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state.
String. Name of url which used for image.
|
|
Gets name of url which used as background image for a particular state of button.
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state.
String. Background image.
|
|
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state.
|
|
|
|
Value of the UniqueID property on server.
String. Value of UniqueID.
|
|
Checks if control is visible.
Boolean. True - control is visible.
|
|
Checks if control has input focus.
Boolean. True - control has focus.
|
|
Boolean. Optional. True - repaint button regardless to old state of button. False - repaint button only if state of button was changed.
|
|
Sets background color for a particular state of button.
String. New background color. state
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state. persist
Boolean. Optional. Request to persist new value to server. True - persist new value to server.
|
|
Sets border color for a particular state of button.
String. New border color. state
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state. persist
Boolean. Optional. Request to persist new value to server. True - persist new value to server.
|
|
Enables or disables control. New value persists to server.
Boolean. True - enable control, false - disable.
|
|
|
|
Sets foreground color for a particular state of button.
String. New foreground color. state
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state. persist
Boolean. Optional. Request to persist new value to server. True - persist new value to server.
|
|
Sets image for a particular state of button.
String. New url for image. state
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state. persist
Boolean. Optional. Request to persist new value to server. True - persist new value to server.
|
|
Sets name of background image url for a particular state of button. That property may have effect only if RoundedCorners property on server is enabled.
String. New background image. state
Numeric. State of button. Possible values: 0 - normal state, 1 - no focus and mouse over, 2 - focus amd no mouse over, 3 - focus and mouse over, 4 - pressed state, 5 - disabled state. persist
Boolean. Optional. Request to persist new value to server. True - persist new value to server.
|
|
Sets text label in control. New value persists to server.
|
|
Shows or hides control. New value does not persist to server.
Boolean. True - show control, false - hide control.
|