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

SettingsLoadingPanel.Text Property

Gets or sets the text to be displayed within a specific loading panel invoked while waiting for a callback response.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("Loading…")]
public virtual string Text { get; set; }

Property Value

Type Default Description
String "Loading…"

A string that specifies the descriptive text displayed within a loading panel.

Property Paths

You can access this nested property as listed below:

Show 132 property paths
Library Object Type Path to Text
ASP.NET Controls and MVC Extensions ASPxAutoCompleteBoxBase
ASPxCalendar
ASPxCallbackPanel
ASPxCaptcha
.LoadingPanel .Text
ASPxCardView
ASPxComboBox
ASPxDataView
ASPxDataViewBase
ASPxDockPanel
ASPxFileManager
ASPxFilterControl
ASPxGaugeControl
ASPxGridView
ASPxHtmlEditor
ASPxHtmlEditorRoundPanel
HtmlEditorFileManager
ASPxImageGallery
ASPxListBox
ASPxMenu
ASPxMenuBase
ASPxNavBar
ASPxNewsControl
ASPxPageControl
ASPxPivotGridPopupMenu
PivotGridDataAreaPopup
ASPxPopupControl
ASPxPopupControlBase
ASPxPopupMenu
RichEditFileManager
RichEditFolderManager
ASPxRoundPanel
ASPxScheduler
ASPxSchedulerPopupForm
ASPxSchedulerPopupMenu
ASPxSpellChecker
ASPxSpreadsheet
ASPxTitleIndex
ASPxTokenBox
ASPxTreeList
ASPxTreeView
ASPxVerticalGrid
GridViewContextMenu
GridViewProperties
WebChartControl
ASP.NET Bootstrap Controls BootstrapAccordion
BootstrapCalendar
BootstrapCallbackPanel
BootstrapCardView
BootstrapComboBox
BootstrapFileManager
BootstrapGridView
BootstrapListBox
BootstrapMenu
BootstrapMenuBase
BootstrapPageControl
BootstrapPopupControl
BootstrapPopupMenu
BootstrapScheduler
BootstrapSchedulerPopupMenu
BootstrapSpreadsheet
BootstrapTagBox
BootstrapToolbar
BootstrapTreeView
Reporting ASPxDocumentViewer
ReportDocumentMap
ReportViewer
ASP.NET MVC Extensions AutoCompleteBoxBaseSettings
CalendarSettings
CallbackPanelSettings
CaptchaSettings
.LoadingPanel .Text
CardViewSettings
CardViewSettings<CardType>
ChartControlSettings
ComboBoxSettings
DataViewSettings
DataViewSettingsBase
DockPanelSettings
DocumentViewerSettings
FileManagerSettings
GridViewSettings
GridViewSettings<RowType>
HtmlEditorSettings
ImageGallerySettings
ListBoxSettings
MVCxCalendar
MVCxCallbackPanel
MVCxCaptcha
.LoadingPanel .Text
MVCxCardView
MVCxChartControl
MVCxComboBox
MVCxDataView
MVCxDockPanel
MVCxDocumentViewer
MVCxFileManager
MVCxFilterControl
MVCxFilterControlSettings
MVCxFilterControlSettings<RowType>
MVCxGridView
MVCxGridViewContextMenu
MVCxGridViewProperties
MVCxHtmlEditor
MVCxHtmlEditorSpellChecker
MVCxImageGallery
MVCxListBox
MVCxMenu
MVCxNavBar
MVCxPageControl
MVCxPopupControl
MVCxPopupMenu
MVCxReportViewer
MVCxRoundPanel
MVCxScheduler
MVCxSpellChecker
MVCxSpreadsheet
MVCxTokenBox
MVCxTreeList
MVCxTreeView
MVCxVerticalGrid
NavBarSettings
PageControlSettings
PopupControlSettings
PopupControlSettingsBase
RoundPanelSettings
SchedulerSettings
SpellCheckerSettings
SpreadsheetSettings
TokenBoxSettings
TreeListSettings
TreeListSettings<RowType>
TreeViewSettings
VerticalGridSettings
VerticalGridSettings<ColumnType>

Remarks

Examples

  • ASPxGridView

Web Forms:

<dx:ASPxGridView ID="grid" ClientInstanceName="grid" runat="server" DataSourceID="CustomersDataSource" KeyFieldName="CustomerID" Width="100%">
    <Columns>
    ...
    </Columns>
    <SettingsLoadingPanel Mode="ShowOnStatusBar" Text="Custom Text" />
</dx:ASPxGridView>

MVC:

@Html.DevExpress().GridView(settings => {
    ...
    settings.SettingsLoadingPanel.Mode = GridViewLoadingPanelMode.ShowOnStatusBar;
    settings.SettingsLoadingPanel.Text = "Custom Text";
    ...
}).Bind(Model).GetHtml()
  • ASPxTreeList

Web Forms:

<dx:ASPxTreeList ID="treeList" ...>
    <SettingsLoadingPanel Text="Custom Text" />
    <Columns>
    ...
    </Columns>
</dx:ASPxTreeList>

MVC:

@Html.DevExpress().TreeList(settings => {
    settings.Name = "treeList";
    settings.SettingsLoadingPanel.Text = "Custom Text";
    ...
}).Bind(Model).GetHtml()
  • ASPxCardview

Web Forms:

<dx:ASPxCardView ID="CardView" runat="server" ...>
    <SettingsLoadingPanel Mode="ShowOnStatusBar" Text="Custom Text" />
    <Columns>
    ... 
    </Columns>
</dx:ASPxCardView>

MVC:

@Html.DevExpress().CardView(
    settings => {
        settings.Name = "CardView";

        settings.SettingsLoadingPanel.Mode = GridViewLoadingPanelMode.ShowOnStatusBar;
        settings.SettingsLoadingPanel.Text = "Custom Text";
        ...    
}).Bind(Model).GetHtml()
  • ASPxHtmlEditor

Web Forms:

<dx:ASPxHtmlEditor ID="DemoHtmlEditor" runat="server" Height="370px" Width="100%">
    <SettingsLoadingPanel Enabled="true" Text="Custom Text" />
    ...
</dx:ASPxHtmlEditor>

MVC:

@Html.DevExpress().HtmlEditorFor(m => m.Html, settings => {
    ...
    settings.SettingsLoadingPanel.Enabled = true;
    settings.SettingsLoadingPanel.Text = "Custom Text";
    ...
}).GetHtml()
See Also