C# 클래스 Fluqi.Widget.jToolTip.Methods

The "Methods" are called after the control has been initialised. If for instance you want to change the value of a property, or invoke "some" action on the control (e.g. "open" or "close") you call the "Method" rather than through the "Options" (as Options is about the initialisation of the control).
상속: Core.Methods
파일 보기 프로젝트 열기: toepoke/Fluqi

공개 메소드들

메소드 설명
Close ( ) : void

Closes a tooltip. This is only intended to be called for non-delegated tooltips.

Destroy ( ) : void

Removes the ToolTip functionality completely. This will return the element back to its pre-init state.

Disable ( ) : void

Disables the tooltip.

DisabledHideEffect ( ) : void

Hide by Boolean: When set to false, no animation will be used and the tooltip will be hidden immediately. When set to true, the tooltip will fade out with the default duration and the default easing.

DisabledShowEffect ( ) : void

Show by Boolean: When set to false, no animation will be used and the tooltip will be hidden immediately. When set to true, the tooltip will fade out with the default duration and the default easing.

Enable ( ) : void

Enable the tooltip.

GetContent ( ) : void

Returns [in JavaScript] the current "content" setting.

GetDisabled ( ) : void

Returns [in JavaScript] the current "disabled" setting.

GetHide ( ) : void

Returns [in JavaScript] the current "hide" setting.

GetItems ( ) : void

A selector indicating which items should show tooltips. Customize if you're using something other then the title attribute for the tooltip content, or if you need a different selector for event delegation.

GetPosition ( ) : void

Returns [in JavaScript] the current "position" setting.

GetShow ( ) : void

Returns [in JavaScript] the current "show" setting.

GetTooltipClass ( ) : void

Returns [in JavaScript] the current "tooltipClass" setting.

GetTrack ( ) : void

Returns [in JavaScript] the current "track" setting.

Methods ( ToolTip tooltip ) : System

Constructor

Open ( ) : void

Programmatically open a tooltip. This is only intended to be called for non-delegated tooltips.

SetContentByFunction ( string content ) : void

The content of the tooltip.

SetContentByString ( string content ) : void

The content of the tooltip.

SetDisabled ( bool disabled ) : void

Disables the tooltip.

SetHide ( Core effect, Core easing, int duration ) : void

Hide by Number: The tooltip will fade out with the specified duration and the default easing.

SetHide ( int duration ) : void

Hide by Number: The tooltip will fade out with the specified duration and the default easing.

SetHide ( string json ) : void

Hide by Number: The tooltip will fade out with the specified duration and the default easing.

SetItems ( ) : void

A selector indicating which items should show tooltips. Customize if you're using something other then the title attribute for the tooltip content, or if you need a different selector for event delegation.

SetPosition ( Core position ) : void

Specifies where the dialog should be displayed. Possible values: A single string representing position within viewport: 'center', 'left', 'right', 'top', 'bottom'.

SetPosition ( Core pos1, Core pos2 ) : void

Specifies where the dialog should be displayed. Possible values: An array containing x,y position string values (e.g. ['right','top'] for top right corner)

SetPosition ( int pos1, int pos2 ) : void

Specifies where the dialog should be displayed. Possible values: An array containing an x,y coordinate pair in pixel offset from left, top corner of viewport (e.g. [350,100])

SetPosition ( string position ) : void

Specifies where the dialog should be displayed. Possible values: A single string representing position within viewport: 'center', 'left', 'right', 'top', 'bottom'.

SetPosition ( string position, bool inDoubleQuotes ) : void

Specifies where the dialog should be displayed. Possible values: A single string representing position within viewport: 'center', 'left', 'right', 'top', 'bottom'.

SetPosition ( string pos1, string pos2 ) : void

Specifies where the dialog should be displayed. Possible values: An array containing x,y position string values (e.g. ['right','top'] for top right corner)

SetPositionJS ( string position ) : void

Specifies where the dialog should be displayed. Possible values: A single string representing position within viewport: 'center', 'left', 'right', 'top', 'bottom'. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetShow ( Core effect, Core easing, int duration ) : void

Show by Number: The tooltip will fade out with the specified duration and the default easing.

SetShow ( int duration ) : void

Show by Number: The tooltip will fade out with the specified duration and the default easing.

SetShow ( string json ) : void

Show by Object:

SetTooltipClass ( string tooltipClass ) : void

Tooltip class to add

SetTrack ( bool track ) : void

Whether the tooltip should track the mouse

Widget ( ) : void

Returns a jQuery object containing the generated wrapper.

보호된 메소드들

메소드 설명
BuildMethodCall ( string methodName ) : string

Builds up the JavaScript required to call a given method.

메소드 상세

BuildMethodCall() 보호된 메소드

Builds up the JavaScript required to call a given method.
protected BuildMethodCall ( string methodName ) : string
methodName string Name of the method to call (as define in the jQuery UI documentation for the control.
리턴 string

Close() 공개 메소드

Closes a tooltip. This is only intended to be called for non-delegated tooltips.
public Close ( ) : void
리턴 void

Destroy() 공개 메소드

Removes the ToolTip functionality completely. This will return the element back to its pre-init state.
public Destroy ( ) : void
리턴 void

Disable() 공개 메소드

Disables the tooltip.
public Disable ( ) : void
리턴 void

DisabledHideEffect() 공개 메소드

Hide by Boolean: When set to false, no animation will be used and the tooltip will be hidden immediately. When set to true, the tooltip will fade out with the default duration and the default easing.
public DisabledHideEffect ( ) : void
리턴 void

DisabledShowEffect() 공개 메소드

Show by Boolean: When set to false, no animation will be used and the tooltip will be hidden immediately. When set to true, the tooltip will fade out with the default duration and the default easing.
public DisabledShowEffect ( ) : void
리턴 void

Enable() 공개 메소드

Enable the tooltip.
public Enable ( ) : void
리턴 void

GetContent() 공개 메소드

Returns [in JavaScript] the current "content" setting.
public GetContent ( ) : void
리턴 void

GetDisabled() 공개 메소드

Returns [in JavaScript] the current "disabled" setting.
public GetDisabled ( ) : void
리턴 void

GetHide() 공개 메소드

Returns [in JavaScript] the current "hide" setting.
public GetHide ( ) : void
리턴 void

GetItems() 공개 메소드

A selector indicating which items should show tooltips. Customize if you're using something other then the title attribute for the tooltip content, or if you need a different selector for event delegation.
public GetItems ( ) : void
리턴 void

GetPosition() 공개 메소드

Returns [in JavaScript] the current "position" setting.
public GetPosition ( ) : void
리턴 void

GetShow() 공개 메소드

Returns [in JavaScript] the current "show" setting.
public GetShow ( ) : void
리턴 void

GetTooltipClass() 공개 메소드

Returns [in JavaScript] the current "tooltipClass" setting.
public GetTooltipClass ( ) : void
리턴 void

GetTrack() 공개 메소드

Returns [in JavaScript] the current "track" setting.
public GetTrack ( ) : void
리턴 void

Methods() 공개 메소드

Constructor
public Methods ( ToolTip tooltip ) : System
tooltip ToolTip ToolTip object to call
리턴 System

Open() 공개 메소드

Programmatically open a tooltip. This is only intended to be called for non-delegated tooltips.
public Open ( ) : void
리턴 void

SetContentByFunction() 공개 메소드

The content of the tooltip.
public SetContentByFunction ( string content ) : void
content string
리턴 void

SetContentByString() 공개 메소드

The content of the tooltip.
public SetContentByString ( string content ) : void
content string
리턴 void

SetDisabled() 공개 메소드

Disables the tooltip.
public SetDisabled ( bool disabled ) : void
disabled bool
리턴 void

SetHide() 공개 메소드

Hide by Number: The tooltip will fade out with the specified duration and the default easing.
public SetHide ( Core effect, Core easing, int duration ) : void
effect Core
easing Core
duration int
리턴 void

SetHide() 공개 메소드

Hide by Number: The tooltip will fade out with the specified duration and the default easing.
public SetHide ( int duration ) : void
duration int
리턴 void

SetHide() 공개 메소드

Hide by Number: The tooltip will fade out with the specified duration and the default easing.
public SetHide ( string json ) : void
json string
리턴 void

SetItems() 공개 메소드

A selector indicating which items should show tooltips. Customize if you're using something other then the title attribute for the tooltip content, or if you need a different selector for event delegation.
public SetItems ( ) : void
리턴 void

SetPosition() 공개 메소드

Specifies where the dialog should be displayed. Possible values: A single string representing position within viewport: 'center', 'left', 'right', 'top', 'bottom'.
public SetPosition ( Core position ) : void
position Core New position setting
리턴 void

SetPosition() 공개 메소드

Specifies where the dialog should be displayed. Possible values: An array containing x,y position string values (e.g. ['right','top'] for top right corner)
public SetPosition ( Core pos1, Core pos2 ) : void
pos1 Core First position setting
pos2 Core Second position setting
리턴 void

SetPosition() 공개 메소드

Specifies where the dialog should be displayed. Possible values: An array containing an x,y coordinate pair in pixel offset from left, top corner of viewport (e.g. [350,100])
public SetPosition ( int pos1, int pos2 ) : void
pos1 int First position setting
pos2 int Second position setting
리턴 void

SetPosition() 공개 메소드

Specifies where the dialog should be displayed. Possible values: A single string representing position within viewport: 'center', 'left', 'right', 'top', 'bottom'.
public SetPosition ( string position ) : void
position string New position setting
리턴 void

SetPosition() 공개 메소드

Specifies where the dialog should be displayed. Possible values: A single string representing position within viewport: 'center', 'left', 'right', 'top', 'bottom'.
public SetPosition ( string position, bool inDoubleQuotes ) : void
position string New position setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetPosition() 공개 메소드

Specifies where the dialog should be displayed. Possible values: An array containing x,y position string values (e.g. ['right','top'] for top right corner)
public SetPosition ( string pos1, string pos2 ) : void
pos1 string First position setting
pos2 string Second position setting
리턴 void

SetPositionJS() 공개 메소드

Specifies where the dialog should be displayed. Possible values: A single string representing position within viewport: 'center', 'left', 'right', 'top', 'bottom'. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetPositionJS ( string position ) : void
position string New position setting
리턴 void

SetShow() 공개 메소드

Show by Number: The tooltip will fade out with the specified duration and the default easing.
public SetShow ( Core effect, Core easing, int duration ) : void
effect Core
easing Core
duration int
리턴 void

SetShow() 공개 메소드

Show by Number: The tooltip will fade out with the specified duration and the default easing.
public SetShow ( int duration ) : void
duration int
리턴 void

SetShow() 공개 메소드

Show by Object:
public SetShow ( string json ) : void
json string
리턴 void

SetTooltipClass() 공개 메소드

Tooltip class to add
public SetTooltipClass ( string tooltipClass ) : void
tooltipClass string
리턴 void

SetTrack() 공개 메소드

Whether the tooltip should track the mouse
public SetTrack ( bool track ) : void
track bool
리턴 void

Widget() 공개 메소드

Returns a jQuery object containing the generated wrapper.
public Widget ( ) : void
리턴 void