I would like to do one of the following:
1) Set ShowInterval value something like 5000 on RadButton (BtnSubmit here) from Client Side?
2) Assuming I made RadNotification2 as invisible and possible to make it visible from below or other Client Side Function?
Thanks
gc_0620
______________
function CallClientShow() { // document.getElementById("divshowprocess").style.display = 'inline'; var notification = $find("<%=RadNotification2.ClientID %>"); notification.show(); } <telerik:RadButton runat="server" Skin="Silk" ID="Submit" OnClientClicked="CallClientShow" Text="Submit" OnClick="Submit_Click"> </telerik:RadButton> <telerik:RadNotification ID="RadNotification2" ShowCloseButton="false" ShowSound="info" runat="server" VisibleOnPageLoad="false" Position="BottomCenter" Skin="MetroTouch" Width="579px" Height="100px" Animation="Slide" EnableRoundedCorners="true" EnableShadow="true" Text="Please wait while your request is being processed!!!" KeepOnMouseOver="false" Title="Processing..." ShowTitleMenu="true" OffsetX="-20" OffsetY="-20" AutoCloseDelay="0"> </telerik:RadNotification>
protected void Submit_Click(object sender, EventArgs e)
{
// RadNotification2.Visible = true;
RadNotification2.Show();
}