aspnet-devexpress-dot-web-dot-settingsloadingpanel.md
Setting this property to values from an untrusted source may introduce security-related issues, since the property value is not encoded and is rendered as HTML markup. Call the HttpUtility.HtmlEncode method to encode the value.
Review the following help topic to better protect websites from cross-site scripting (XSS) attacks: HTML Encoding.
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.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("Loading…")]
public virtual string Text { get; set; }
<DefaultValue("Loading…")>
Public Overridable Property Text As String
| Type | Default | Description |
|---|---|---|
| String | "Loading…" |
A string that specifies the descriptive text displayed within a loading panel.
|
You can access this nested property as listed below:
Show 34 property paths
| Library | Object Type | Path to Text |
|---|---|---|
| ASP.NET Bootstrap Controls | BootstrapCallbackPanel |
.SettingsLoadingPanel .Text
| | ASP.NET MVC Extensions | AutoCompleteBoxBaseSettings |
.SettingsLoadingPanel .Text
| | CalendarSettings |
.SettingsLoadingPanel .Text
| | CallbackPanelSettings |
.SettingsLoadingPanel .Text
| | CaptchaSettings |
.LoadingPanel .Text
| | ChartControlSettings |
.SettingsLoadingPanel .Text
| | DataViewSettingsBase |
.SettingsLoadingPanel .Text
| | FileManagerSettings |
.SettingsLoadingPanel .Text
| | ListBoxSettings |
.SettingsLoadingPanel .Text
| | MVCxFilterControlSettings |
.SettingsLoadingPanel .Text
| | NavBarSettings |
.SettingsLoadingPanel .Text
| | PageControlSettings |
.SettingsLoadingPanel .Text
| | PopupControlSettingsBase |
.SettingsLoadingPanel .Text
| | RoundPanelSettings |
.SettingsLoadingPanel .Text
| | SchedulerSettings |
.OptionsLoadingPanel .Text
| | SpellCheckerSettings |
.SettingsLoadingPanel .Text
| | ASP.NET Web Forms Controls | ASPxAutoCompleteBoxBase |
.SettingsLoadingPanel .Text
| | ASPxCalendar |
.SettingsLoadingPanel .Text
| | ASPxCallbackPanel |
.SettingsLoadingPanel .Text
| | ASPxCaptcha |
.LoadingPanel .Text
| | ASPxDataViewBase |
.SettingsLoadingPanel .Text
| | ASPxFileManager |
.SettingsLoadingPanel .Text
| | ASPxFilterControl |
.SettingsLoadingPanel .Text
| | ASPxGaugeControl |
.SettingsLoadingPanel .Text
| | ASPxListBox |
.SettingsLoadingPanel .Text
| | ASPxMenuBase |
.SettingsLoadingPanel .Text
| | ASPxNavBar |
.SettingsLoadingPanel .Text
| | ASPxPageControl |
.SettingsLoadingPanel .Text
| | ASPxPopupControlBase |
.SettingsLoadingPanel .Text
| | ASPxRoundPanel |
.SettingsLoadingPanel .Text
| | ASPxScheduler |
.OptionsLoadingPanel .Text
| | ASPxSpellChecker |
.SettingsLoadingPanel .Text
| | ASPxTitleIndex |
.SettingsLoadingPanel .Text
| | WebChartControl |
.SettingsLoadingPanel .Text
|
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()
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()
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()
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