We’re trying to set up a demo to make it work on the company’s test server. A page does load up with the charts. I just need the same thing in Servoy. When a user clicks a button, say “LOAD CHART” it just needs to open this URL or image?. that’s all.
Please help. our demo is tomorrow (wednesday)
bcusick:
Hi Sammy,
That’s not a URL to an image.
An image url needs to end in .gif, .jpg, etc.
If you open the URL in a browser - what do you see?
Here’s the problem - the SOURCE of that page is the RAW .png code, NOT html.
You can use this command:
application.showURL(yourURLhere)
To open it in a browser. It will NOT display in the HTML bean, beacuse the source of the page is not HTML. To see what the code of the page is - open in a browser and choose “View Source”.
Yes, HTMLpanebean is rendering the image. But it doesn’t have the dynamic contents that internet explorer shows. my asp link has a feature that’s able to display trend rules and values as you roll your mouse over a datapoint in the graph.
On the HTMLpane bean , i just get a static graph, where as IE will render the ASP page will all the roll over features
sammyzheng:
Yes, HTMLpanebean is rendering the image. But it doesn’t have the dynamic contents that internet explorer shows. my asp link has a feature that’s able to display trend rules and values as you roll your mouse over a datapoint in the graph.
looks like you’ll have to step back and keep using:
application.showURL(yourURLhere);
until someone develops a more complete html plugin?
sammyzheng:
Yes, HTMLpanebean is rendering the image. But it doesn’t have the dynamic contents that internet explorer shows. my asp link has a feature that’s able to display trend rules and values as you roll your mouse over a datapoint in the graph.
On the HTMLpane bean , i just get a static graph, where as IE will render the ASP page will all the roll over features
Hi Sammy, sorry for not replying on your earlier question, haven’t had time to visit the forum.
Like I stated before the HTMLpane is not a first class webbrowser so things like rollovers and such might not work.
I believe the HTMLpane is only HTML v3 compliant.
So you have to do with static pages for now.