Skip to main content
A newer version of this page is available.

BootstrapCallbackPanel.ContentCollection Property

Provides access to a collection of the Callback Panel‘s content controls.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.1.dll

Declaration

[Browsable(false)]
[PersistenceMode(PersistenceMode.InnerProperty)]
public ContentControlCollection ContentCollection { get; }

Property Value

Type Description
ContentControlCollection

A ContentControlCollection object that is a collection of content controls.

Example

This example demonstrates the basic functionality of the Callback Panel.

The image below shows the result:

BootstrapCallbackPanel

protected void CallbackPanel_Callback(object sender, DevExpress.Web.CallbackEventArgsBase e) {
    if(!string.IsNullOrEmpty(e.Parameter))
        passedInfo.InnerText = "Passed information: \"" + e.Parameter + "\"";
}
See Also