Gets or sets a value indicating whether to stripe ajax response, that is to get the partial of the ajax response. This can be useful when to use the astreeview in a custom server side control.


Namespace: Geekees.Common.Controls
Assembly: ASTreeView (in ASTreeView.dll)

Syntax

Visual Basic (Declaration)
<CategoryAttribute("Configuration"), _
 BrowsableAttribute(True), _
 DefaultValueAttribute(False)>

Public Property EnableStripAjaxResponse As Boolean
C#
[CategoryAttribute("Configuration")]
[BrowsableAttribute(True)]
[DefaultValueAttribute(False)]
public bool EnableStripAjaxResponse { get; set; }
C++
[CategoryAttribute(L"Configuration")]
[BrowsableAttribute(True)]
[DefaultValueAttribute(False)]
public property bool EnableStripAjaxResponse sealed  {
    bool get();
    void set(bool value);
}
J#
/** @attribute CategoryAttribute("Configuration") */
/** @attribute BrowsableAttribute(True) */
/** @attribute DefaultValueAttribute(False) */
/** property */
public bool get_EnableStripAjaxResponse();

/** property */
public void set_EnableStripAjaxResponse(bool value);
JScript
public function get EnableStripAjaxResponse() : bool

public function set EnableStripAjaxResponse(value : bool);

Property Value

true if [enable strip ajax response]; otherwise, false.

See Also