Method | Description | |
---|---|---|
GetAttribute ( string attribute ) : string | ||
GetCss ( string attribute ) : string | ||
Insert ( string cssSeletor, InsertMode mode ) : void | ||
SetAttribute ( string attribute, string value ) : void | ||
SetCss ( string attribute, string value ) : void | ||
SetSize ( int width, int height ) : void | ||
UpdateLayout ( ) : void |
Method | Description | |
---|---|---|
ChangeFocusElement ( jQueryObject element ) : void |
Changes the element that is used for focus control. By default this is the 'Container', however if a child element within the control is the primary reciever of focus use this method to assign it as such. |
|
FireIsEnabledChanged ( ) : void | ||
FireIsVisibleChanged ( ) : void | ||
FireLoaded ( ) : void | ||
FireSizeChanged ( ) : void | ||
OnAfterInsert ( InsertMode mode ) : void |
Invoked immediately after the insertion occurs via the 'Insert' method.
|
|
OnBeforeInsert ( jQueryObject targetElement, InsertMode mode ) : void |
Invoked immediately before the insertion occurs via the 'Insert' method. Use this to extract any meta-data from the original element before it is removed from the DOM. |
|
OnDisposed ( ) : void |
Destructor.
|
|
OnIsEnabledChanged ( ) : void | ||
OnIsVisibleChanged ( ) : void | ||
OnIsVisibleChanging ( bool isVisible ) : bool |
Invoked when the 'IsVisible' property is causing the visibility to change. Override this method to intercept the visibility value which is ultmately used to chance the CSS value. For instance, this is useful when you want to retain the 'IsVisible' property value as a logical value, but cause the control to be hidden like when a tab should be shown (logically), but is overflowing off the screen so should be hidden. |
|
OnSizeChanged ( ) : void | ||
OnUpdateLayout ( ) : void | ||
RetrieveHtml ( string url, System.Action onComplete ) : void |
Inserts the HTML from the specified URL.
|
|
ViewBase ( jQueryObject container ) : System |
Constructor.
|
Method | Description | |
---|---|---|
FireGotFocus ( ) : void | ||
FireLostFocus ( ) : void | ||
GetInsertException ( string cssSeletor, string message ) : |
||
SetSizeInternal ( int value, SizeDimension dimension, bool withEvent ) : void | ||
SyncVisibility ( bool isVisible ) : void | ||
ViewBase ( ) : System |
protected ChangeFocusElement ( jQueryObject element ) : void | ||
element | jQueryObject | The child element that is the primary reciever of focus. |
return | void |
public GetAttribute ( string attribute ) : string | ||
attribute | string | |
return | string |
public Insert ( string cssSeletor, InsertMode mode ) : void | ||
cssSeletor | string | |
mode | InsertMode | |
return | void |
protected OnAfterInsert ( InsertMode mode ) : void | ||
mode | InsertMode | The strategy used for the insertion. |
return | void |
protected OnBeforeInsert ( jQueryObject targetElement, InsertMode mode ) : void | ||
targetElement | jQueryObject | The element being replaced. |
mode | InsertMode | The strategy used for the insertion. |
return | void |
protected OnIsVisibleChanging ( bool isVisible ) : bool | ||
isVisible | bool | The IsVisible value. |
return | bool |
protected RetrieveHtml ( string url, System.Action onComplete ) : void | ||
url | string | The URL of the HTML content to retrieve. |
onComplete | System.Action | Action to invoke upon completion. |
return | void |
public SetAttribute ( string attribute, string value ) : void | ||
attribute | string | |
value | string | |
return | void |
public SetCss ( string attribute, string value ) : void | ||
attribute | string | |
value | string | |
return | void |
public SetSize ( int width, int height ) : void | ||
width | int | |
height | int | |
return | void |
protected ViewBase ( jQueryObject container ) : System | ||
container | jQueryObject | The root HTML element of the control (if null a is generated). |
return | System |