Back to Devexpress

SettingsLoadingPanel.Text Property

aspnet-devexpress-dot-web-dot-settingsloadingpanel.md

latest10.1 KB
Original Source

SettingsLoadingPanel.Text Property

SECURITY-RELATED CONSIDERATIONS

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

Declaration

csharp
[DefaultValue("Loading…")]
public virtual string Text { get; set; }
vb
<DefaultValue("Loading&hellip;")>
Public Overridable Property Text As String

Property Value

TypeDefaultDescription
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 34 property paths

LibraryObject TypePath to Text
ASP.NET Bootstrap ControlsBootstrapCallbackPanel

.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

|

Remarks

Examples

  • ASPxGridView

Web Forms:

aspx
<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:

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

Web Forms:

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

MVC:

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

Web Forms:

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

MVC:

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

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

Web Forms:

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

MVC:

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

See Also

ShowImage

ImagePosition

Enabled

SettingsLoadingPanel Class

SettingsLoadingPanel Members

DevExpress.Web Namespace