Esempio n. 1
0
 /// <summary>
 /// Hides this Component, setting it to invisible using the configured hideMode.
 /// </summary>
 /// <param name="animateTarget">only valid for floating Components such as Windows or ToolTips, or regular Components which have been configured with floating: true.. The target to which the Component should animate while hiding (defaults to null with no animation)</param>
 /// <param name="callback">A callback function to call after the Component is hidden.</param>
 /// <param name="scope">The scope (this reference) in which the callback is executed. Defaults to this Component.</param>
 public virtual void Hide(ComponentBase animateTarget, JFunction callback, string scope)
 {
     this.Call("hide", new JRawValue(animateTarget.ClientID), callback, new JRawValue(scope));
 }
Esempio n. 2
0
 public virtual void Hide(ComponentBase animateTarget)
 {
     this.Call("hide", new JRawValue(animateTarget.ClientID));
 }
Esempio n. 3
0
 public virtual void Hide(ComponentBase animateTarget, string callback)
 {
     this.Call("hide", new JRawValue(animateTarget.ClientID), new JRawValue(callback));
 }
Esempio n. 4
0
 /// <summary>
 ///
 /// </summary>
 public virtual TBuilder Hide(ComponentBase animateTarget, JFunction callback)
 {
     this.ToComponent().Hide(animateTarget, callback);
     return(this as TBuilder);
 }
Esempio n. 5
0
 /// <summary>
 ///
 /// </summary>
 public virtual TBuilder Hide(ComponentBase animateTarget)
 {
     this.ToComponent().Hide(animateTarget);
     return(this as TBuilder);
 }
Esempio n. 6
0
 /// <summary>
 /// Hides this Component, setting it to invisible using the configured hideMode.
 /// </summary>
 /// <param name="animateTarget">only valid for floating Components such as Windows or ToolTips, or regular Components which have been configured with floating: true.. The target to which the Component should animate while hiding (defaults to null with no animation)</param>
 /// <param name="callback">A callback function to call after the Component is hidden.</param>
 /// <param name="scope">The scope (this reference) in which the callback is executed. Defaults to this Component.</param>
 public virtual void Hide(ComponentBase animateTarget, JFunction callback, string scope)
 {
     this.Call("hide", new JRawValue(animateTarget.ClientID), callback, new JRawValue(scope));
 }
Esempio n. 7
0
 public virtual void Hide(ComponentBase animateTarget, string callback)
 {
     this.Call("hide", new JRawValue(animateTarget.ClientID), new JRawValue(callback));
 }
Esempio n. 8
0
 public virtual void Hide(ComponentBase animateTarget)
 {
     this.Call("hide", new JRawValue(animateTarget.ClientID));
 }