Hi I’m working on proving out the concept for a content management system. I’m displaying a page in an IFramePanel.
When I change the underlying data – I need to have the IFramePanel reload the page it is pointing to.
.Refresh does not do this (I didn’t expect it to). But there is no .Reload type of event. How can i get the IFramePanel to reload its content?
Thanks in advance!
Btw – love your stuff…
Hi,
Which Event to subscribe to be notified when the Iframe is following a Link due to a user click ?
I was in hope to get this by hooking to URLChanged event, but it doesn’t fire. I also tried textChanged or DocumentCompleted but the same.
I’m after getting notified and having the URL followed.
Thanks.
Hi Matthew,
Wisej.Web.IFramePanel.Reload() has been added in the latest Wisej release (1.3.53).
Best regards
Frank
Thanks very much – the workaround of just calling IFramePanel.Call(“reload”) works beautifully! Thank you for the great support.
Also – I notice that the IFrame panel does not display any content at all when I run the same app I’m building on an iPad (though it does in desktop). Is there something different that I need to do?
Good catch! We can add the Reload method. Workarounds:
from the iFrame class: this.Call(“reload”)
or from outside: this.iFramePanel1.Call(“reload”)
or add a parameter to the URL: &v={counter{
Calling “reload” is much better.
Best,
Luca
Please login first to submit.