Hi There
I'm loading a Jotform smart form in webview. My form has a print button that prints formatted content of the form. So, when I click print on this form, it doesn't do anything. I have run the same smart form in Google Chrome and I'm able to print. I have no idea what I must do to be able to print within webview.
Any ideas?
Thanks in advance.
Setlodi
I'm loading a Jotform smart form in webview. My form has a print button that prints formatted content of the form. So, when I click print on this form, it doesn't do anything. I have run the same smart form in Google Chrome and I'm able to print. I have no idea what I must do to be able to print within webview.
This is how I'm loading my form:
Sub Activity_Create(FirstTime As Boolean)
jo.InitializeContext
webview.Initialize("webview")
Activity.AddView(webview, 0%x,0%y,100%x,100%y)
jo.runmethod("addChromeClient", Array(webview))
webpage = "https://form.jotform.com/jsetlodi/print"
webview.LoadUrl(webpage)
End Sub
Any ideas?
Thanks in advance.
Setlodi