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

Methods for changing options (after initialisation).
상속: Core.Methods
파일 보기 프로젝트 열기: toepoke/Fluqi

공개 메소드들

메소드 설명
Destroy ( ) : void

Remove the tabs functionality completely. This will return the element back to its pre-init state.

Disable ( ) : void

Disable the tabs.

DisableHide ( ) : void

Disables animation, panel is hidden immediately.

DisableShow ( ) : void

Disables animation, panel is shown immediately.

Enable ( ) : void

Enable the tabs.

Enable ( int index ) : void

Enable a disabled tab. The second argument is the zero-based index of the tab to be enabled.

GetActive ( ) : void

Returns [in JavaScript] the active setting. To set all tabs to unselected pass -1 as value.

GetCollapsible ( ) : void

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

GetEvent ( ) : void

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

GetHeightStyle ( ) : void

Controls the height of the accordion and each panel. Possible values are "auto", "fill" and "content".

GetHide ( ) : void

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

GetShow ( ) : void

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

Load ( int index ) : void

Reload the content of an Ajax tab programmatically. This method always loads the tab content from the remote location, even if cache is set to true. Note the remote location is the href in the header of the tab. Zero-based index of the tab to be reloaded.

Methods ( Fluqi.Widget.jTab.Tabs tabs ) : System

Constructor

Refresh ( ) : void

Process any tabs that were added or removed directly in the DOM and recompute the height of the tab panels. Results depend on the content and the heightStyle option.

SetActive ( int newValue ) : void

Zero-based index of the tab to be active on initialization. To set all tabs to unselected pass -1 as value.

SetCollapsible ( bool newValue ) : void

Set to true to allow an already selected tab to become unselected again upon reselection.

SetEvent ( Core newValue ) : void

The type of event to be used for selecting a tab.

SetEvent ( string newValue ) : void

The type of event to be used for selecting a tab.

SetEvent ( string newValue, bool inDoubleQuotes ) : void

The type of event to be used for selecting a tab.

SetEventJS ( string newValue ) : void

The type of event to be used for selecting a tab. 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).

SetHeightStyle ( Core style ) : void

Controls the height of the accordion and each panel. Possible values are "auto", "fill" and "content".

SetHeightStyle ( string hs ) : void

Controls the height of the accordion and each panel. Possible values are "auto", "fill" and "content".

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

Panel will be hidden using the specified parameters.

SetHide ( int duration ) : void

Panel will fade out with the specified duration and default easing.

SetHide ( string value ) : void

When value is a string, the panels are hidden using the specified [named] effect. When the value is a JSON object, it is passed directly to the hide method.

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

Panel will be shown using the specified parameters.

SetShow ( int duration ) : void

Panel will fade in with the specified duration and default easing.

SetShow ( string value ) : void

When value is a string, the panels are shown using the specified [named] effect. When the value is a JSON object, it is passed directly to the show method.

Widget ( ) : void

Returns the .ui-tabs element.

메소드 상세

Destroy() 공개 메소드

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

Disable() 공개 메소드

Disable the tabs.
public Disable ( ) : void
리턴 void

DisableHide() 공개 메소드

Disables animation, panel is hidden immediately.
public DisableHide ( ) : void
리턴 void

DisableShow() 공개 메소드

Disables animation, panel is shown immediately.
public DisableShow ( ) : void
리턴 void

Enable() 공개 메소드

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

Enable() 공개 메소드

Enable a disabled tab. The second argument is the zero-based index of the tab to be enabled.
public Enable ( int index ) : void
index int
리턴 void

GetActive() 공개 메소드

Returns [in JavaScript] the active setting. To set all tabs to unselected pass -1 as value.
public GetActive ( ) : void
리턴 void

GetCollapsible() 공개 메소드

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

GetEvent() 공개 메소드

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

GetHeightStyle() 공개 메소드

Controls the height of the accordion and each panel. Possible values are "auto", "fill" and "content".
public GetHeightStyle ( ) : void
리턴 void

GetHide() 공개 메소드

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

GetShow() 공개 메소드

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

Load() 공개 메소드

Reload the content of an Ajax tab programmatically. This method always loads the tab content from the remote location, even if cache is set to true. Note the remote location is the href in the header of the tab. Zero-based index of the tab to be reloaded.
public Load ( int index ) : void
index int
리턴 void

Methods() 공개 메소드

Constructor
public Methods ( Fluqi.Widget.jTab.Tabs tabs ) : System
tabs Fluqi.Widget.jTab.Tabs Tabs object to call
리턴 System

Refresh() 공개 메소드

Process any tabs that were added or removed directly in the DOM and recompute the height of the tab panels. Results depend on the content and the heightStyle option.
public Refresh ( ) : void
리턴 void

SetActive() 공개 메소드

Zero-based index of the tab to be active on initialization. To set all tabs to unselected pass -1 as value.
public SetActive ( int newValue ) : void
newValue int New active value
리턴 void

SetCollapsible() 공개 메소드

Set to true to allow an already selected tab to become unselected again upon reselection.
public SetCollapsible ( bool newValue ) : void
newValue bool New collapsible setting
리턴 void

SetEvent() 공개 메소드

The type of event to be used for selecting a tab.
public SetEvent ( Core newValue ) : void
newValue Core New event setting
리턴 void

SetEvent() 공개 메소드

The type of event to be used for selecting a tab.
public SetEvent ( string newValue ) : void
newValue string New event setting
리턴 void

SetEvent() 공개 메소드

The type of event to be used for selecting a tab.
public SetEvent ( string newValue, bool inDoubleQuotes ) : void
newValue string New event setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetEventJS() 공개 메소드

The type of event to be used for selecting a tab. 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 SetEventJS ( string newValue ) : void
newValue string New event setting
리턴 void

SetHeightStyle() 공개 메소드

Controls the height of the accordion and each panel. Possible values are "auto", "fill" and "content".
public SetHeightStyle ( Core style ) : void
style Core Style to use
리턴 void

SetHeightStyle() 공개 메소드

Controls the height of the accordion and each panel. Possible values are "auto", "fill" and "content".
public SetHeightStyle ( string hs ) : void
hs string Style to use
리턴 void

SetHide() 공개 메소드

Panel will be hidden using the specified parameters.
public SetHide ( Core effect, Core easing, int duration ) : void
effect Core Effect to use, e.g. "slideUp" or "fold"
easing Core Easing property to adopt
duration int Time (in milliseconds) the animation should execute for
리턴 void

SetHide() 공개 메소드

Panel will fade out with the specified duration and default easing.
public SetHide ( int duration ) : void
duration int Time in milliseconds for the animation to run
리턴 void

SetHide() 공개 메소드

When value is a string, the panels are hidden using the specified [named] effect. When the value is a JSON object, it is passed directly to the hide method.
public SetHide ( string value ) : void
value string String/JSON object
리턴 void

SetShow() 공개 메소드

Panel will be shown using the specified parameters.
public SetShow ( Core effect, Core easing, int duration ) : void
effect Core Effect to use, e.g. "slideUp" or "fold"
easing Core Easing property to adopt
duration int Time (in milliseconds) the animation should execute for
리턴 void

SetShow() 공개 메소드

Panel will fade in with the specified duration and default easing.
public SetShow ( int duration ) : void
duration int Time in milliseconds for the animation to run
리턴 void

SetShow() 공개 메소드

When value is a string, the panels are shown using the specified [named] effect. When the value is a JSON object, it is passed directly to the show method.
public SetShow ( string value ) : void
value string String/JSON object
리턴 void

Widget() 공개 메소드

Returns the .ui-tabs element.
public Widget ( ) : void
리턴 void