Hi there,
i have got up and running with this panel and now want to add a javascript method for OnClientResponseEnd. I have added the method and I have tested that it is being called, but when the method is included the panel does not update at all. Can anyone help please?
Here's the property on my panel: OnClientResponseEnd="showTooltipIfRequired"
Here's the method (wrapped in a RadCodeBlock):
Do I need to add additional arguments to the method signature? I tried adding sender/args but the same happens.
Thanks, Carl
i have got up and running with this panel and now want to add a javascript method for OnClientResponseEnd. I have added the method and I have tested that it is being called, but when the method is included the panel does not update at all. Can anyone help please?
Here's the property on my panel: OnClientResponseEnd="showTooltipIfRequired"
Here's the method (wrapped in a RadCodeBlock):
| function showTooltipIfRequired() { |
| var m_c = document.getElementById("m_c"); |
| if (m_c.innerHTML != "0") { |
| var tooltip = $find("NewMessagesToolTip"); |
| tooltip.show(); |
| } |
| } |
Do I need to add additional arguments to the method signature? I tried adding sender/args but the same happens.
Thanks, Carl