Hi
Is this possible, I'm already opening the panel with Js , I just want to show the loadingpanel when its opening
Is this possible, I'm already opening the panel with Js , I just want to show the loadingpanel when its opening
| showLoadingPanel(Panel1); |
| function showLoadingPanel(sender, args) |
| { |
| var currentLoadingPanel = null; |
| var currentUpdatedControl = null; |
| currentLoadingPanel = $find("<%= RadAjaxLoadingPanel1.ClientID %>"); |
| currentUpdatedControl == args.get_eventTarget(); |
| currentLoadingPanel.show(currentUpdatedControl); |
| } |