Hi,
Is there a way to trigger a client-side javascript after clicking a ajaxed button? I tried the following, but it failed.
Is there a work around for this? The javascript is suppose to disable or enable certain radio buttons based on a set of data. I can enable or disable them on the back-end, but then I can't seem to re-enable them on the client-side.
Thanks,
Johnson
Is there a way to trigger a client-side javascript after clicking a ajaxed button? I tried the following, but it failed.
| protected void btnShowPanel2_OnClick(object sender, EventArgs e) |
| { |
| Panel1.Visible = false; Panel2.Visible = true; Response.Write("<script>validate_panel2();</script>"); |
| } |
Is there a work around for this? The javascript is suppose to disable or enable certain radio buttons based on a set of data. I can enable or disable them on the back-end, but then I can't seem to re-enable them on the client-side.
Thanks,
Johnson