I have an asp.net 3.5 application which contains gridview, having checkbox as one of the column.

If user doesn't select any checkboxes and clicks submit button, alert is firing prompting user to select the button.

The code to fire the alert is as below;

 System.Text.StringBuilder sb = new System.Text.StringBuilder();
 sb.Append(@"<script language='javascript'>");
 sb.Append(@"alert('Please select at least one record!')");
 sb.Append(@"</script>");
 ScriptManager.RegisterStartupScript(upnlGrid, this.GetType(), "GridView", sb.ToString(), false);
 BindGrid();

Until the alert gets fired, i see "Loading..." image (ajax update progress bar), which is fine. But then after the alert gets fired i still need to see the same image, which is not visible. due to which the page gets hangedup for some seconds (5-10 seconds). For that 5-10 seconds i need to show the Loading Image.

Please guide!

link|improve this question

feedback

1 Answer

You could try validating the selection before doing the postback. Here's a rough example:

<asp:Button ID="Button1" runat="server" Text="Foo" OnClientClick="return validateGridSelection()" ... />

And your JavaScript function:

validateGridSelection = function() {
    var itemsSelected = 0;
    $("#<%=GridView1.ClientID%>").find("input:checkbox").each(function() {
        if (this.checked) {
            itemsSelected++;
        }
    });
    if (itemsSelected == 0) {
        alert("Please select at least one checkbox.");
    }
    return true;
} 
link|improve this answer
thanks for your input James, but my query is not how to fire up the alert but how to show the progress bar after the alert gets fired until the grid is loaded(binded) fully – Smith Pascal Jr. Sep 8 '11 at 19:26
If you show the alert before the postback occurs, the progress bar should show after the alert, right? I think you would just need to change the method to return true regardless (so it performs a postback) – James Johnson Sep 8 '11 at 19:29
What changes need to be done? – Smith Pascal Jr. Sep 9 '11 at 5:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.