Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am placing my HTML file in qlikview rootfolder(i.e Qlikview/web). My HTML is having Chart Objects. I am trying to access the HTML from the browser, then I can able to view the charts objects in the browser. But I am trying to access from the iPad, I can’t able to access the chart Objects. But I can able to view the anchor tags.
Through UIWebView, I am trying to access the HTML file which is in server.
Please Help me on this.
Thanks & Regards,
Murali Krishna.
Hi,
Can you please tell me what is the Qlikview version you are using.
Regards
ASHFAQ
I'm sorry as I could not get your issue.
Are you saying that you have html files in which you have chart object (are they QlikView Chart objects?)
Have you embedded the QlikView Charts in HTML?
Are these in HTML 4 or 5 version files. I think 4 and 5 are supported on IPad.
Thanks for replying.
ASHFAQ: I am using QlikView 11 version.
Sudeep:
Yes. In the HTML file, 2 anchor tags and 2 chart objects are existing.
//Anchor Tags
<a href="javascript:hideshow(document.getElementById('Document\\CH402'),document.getElementById('Document\\CH404'))"> Summary</a>
<a href="javascript:hideshow(document.getElementById('Document\\CH404'),document.getElementById('Document\\CH402'))">Period</a>
//Div Tags
<div avqview="Efficiency" avq="object:.Document\CH402" id="Document\CH402" style="display:block;width:600px;height:600px;"></div>
<div avqview="Efficiency" avq="object:.Document\CH404" id="Document\CH404" style="display:none;width:600px;height:600px;"></div>
I deployed the above HTML file into the QlikView Server(Qlikview/web). I am trying to access the from browser, I can able to view the anchor tags and chart Objects. In Browser, directly i am calling this url: http://SERVERADDR/qlikview/efficiency.html
Whenver I am trying to access from the iPad, I can able to view anchor tags. But I am unable to view the chart Objects.
For this, I created the project in XCode. By using the UIWebview, I am trying to call the url:http://SERVERADDR/qlikview/efficiency.html.
Please find the following code for UIWebView.
-(void) viewDidLoad
{
NSString *fullURL = @"http://SERVERADDR/qlikview/efficiency.html";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[self.qlkWebView loadRequest:requestObj];
}
Could you please tell me where I have done a mistake.
Thanks & Regards,
Murali Krishna
Hi Murali,
Ver 11 which build?
May be you have odl version of qlikview installed which had this problem.
If you can confirm the build it would be great.
Regards
ASHFAQ
Hi ASHFAQ,
I am using QlikView 11 SP2.
Thanks & Regards,
Murali Krishna
Do you have <!DOCTYPE html> in your HTML as the first code entry?
Hi,
I would suggest you to download latest version of qlikview 11.2 sr6
Regards
ASHFAQ
Thanks Sudeep & ASHFAQ.
In Management Console, under Sytem/Setup/Authentication tab, I selected the "Alternate Login Page" option.
And also under the Sytem/Setup/AccessPoint/AccessPoint Settings tab, I selected the "Full Browser and Small Device Version" and in the textbox I replaced with /QvAJAXZfc/efficiency.html instead of /QvAJAXZfc/opendoc.htm.
Then I am trying to run the app, At first I got the FormLogin.htm on iPad. After logged into the application, I can able to access the efficiency.html file with chart Objects. So, I can able to view the both anchor tags and chart Objects.
I think we can't able to access the QlikView Objects with out Authentication.
Thanks & Regards,
Murali Krishna