Hi Guys,
How could I load another HTML in a TWEBVIEW2 previously created?
Hi Guys,
How could I load another HTML in a TWEBVIEW2 previously created?
Dear Vilian,
Please try this:
oWebView:SetHtml( NewHtml() )
where function NewHtml() returns the new cHTML as a string, that you want to use
Antonio,
Thanks. I tried it, but it didn't work.
Please provide the PRG you are testing, thanks
Antonio,
It was my mistake. Worked perfectly! Thank You !
Antonio Linares wrote: Dear Vilian,IF I have a button or an image that are being shown in the webview/html, is possible call a FWH function from a click on them?
Please try this:
oWebView:SetHtml( NewHtml() )
where function NewHtml() returns the new cHTML as a string, that you want to use
oWebView:bOnBind = { | cJson | HandleCallback( cJson ) }
function handleCallBack( cJSON )
msgInfo( cJSON, "message" )
return