Click or drag to resize
KaxMenuLoadingStatusTemplate Property
Gets or sets the template displayed when child items are being loaded.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public ITemplate LoadingStatusTemplate { get; set; }

Property Value

Type: ITemplate
Examples
The following example demonstrates how to use the LoadingStatusTemplate to display an image.

<kettic:KaxMenu runat="server" ID="KaxMenu1"> <LoadingStatusTemplate> <asp:Image runat="server" ID="Image1" ImageUrl="~/Img/loading.gif" /> </LoadingStatusTemplate> </kettic:KaxMenu>

See Also