Opening other reports from a report (Working in webplayer) - tibco

Is there a way to open other dashboards/Reports ( saved in same server) from a report in web player.
I tried some python scripts which is used to access webpages but none of them is working in webplayer. My client want this to happen using buttons. So i prefer python scripts than HTML.
Much appreciated

Download an image of the button you want to use, like this one.
Add this image to a text area. Edit Text Area > Insert Image > (Select the downloaded image). Now you will see your "Button" image.
Edit the HTML and use href to the web page you care about. Notice the src= will already have your image name.
<a href="http://finance.yahoo.com/quotes/TIBX,Spotfire,S,Products?ltr=1&bypass=true">
<img src="ff08c65b55ab4b36acd5dacc78f03eea.png" border="0">
</a>

Related

CK Editor uploaded images needs to respond as responsive images

I am using CK Editor 5 and a Simple upload adapter which works fine. All text and images from the editor is stored into a database when submitted. Also working just fine.
But when I reload and present the data/html it's not behaiving as expect. I need for the images to be responsive if I alter the width of the browser, but the images are quite static.
CK Editor has produced the following HTML (snippet is only the image part)
<figure class="image">
<img src="/img/article/160742759333072416.jpg">
</figure>
What do I need to do to make CK Editor produce HTML which supports responsive images?
Note: I am not able to use CK Editors 'Easy Image' Cloud option. I need to use an my owb om prem solution.
Looking forward to suggestions or pointers...
Blasted. After reading documentation for at last 3 more hours I noticed a CSS mistake I did myself while examining my code.
Bad!
Sorry to disturb you all and happy holiday season to all.

Images not showing in codepen

I have a code which I need to share so I pasted in from Visual Studio Code into code pen and replace all my image links with imgur links but when I save the code on codepen it doesn't show up.
I've tried uploading to different picture sharing websites but none of them seems to work or sometimes they just dissapear
<img src="https://images.app.goo.gl/PH9vzQEL6deb152b7" alt="logo">
This is a simple code i used but the image just refuses to appear.
I just need to image to show up, if there is any way to share my website without publishing it to the web I would like to be informed about it too. Thanks you.
this is a website that get your image and give you base64 of it and you can put this base64 thing in your src attribute of img element and you are good to go

How do I include a phone number and icon on a Jekyll theme?

There isn't a parameter for phone numbers under the social contact area in the _config.yml file.
I tried to make one and then added a font awesome icon in the _includes directory but it didn't turn out the way I expected it to work.
For example on my site http://dannguyen.me I have several social icons. I would like to add a FA icon for phone number as well, but I couldn't find any good resources.
Does anyone know how to do this?
I'd try using the icon in SVG format and insert it into the HTML inline. This would allow you to target it with css as well which can be handy.
If you want to use Font Awesome you should check, which is the correct icon you want (most likely fa-phone).
You can then add the following block to your page:
<a class="social-btn" href="tel:123456" target="_blank" rel="noopener noreferrer">
<i class="fa fa-fw fa-phone"></i>
</a>
Which theme are you using? Most likely you'll have to overwrite some of the content here.

Github pages doesn't show images on my website

I put my website on github pages following this website and it works fine. The problem is that when I put it online, four images of the homepage are not shown whereas locally yes.
The code I use for displaying it is
<img src="img/prototyping.png" class="img-responsive" alt="">
the source is here
The dimension is 521 x 521 for 180 KB.
I tried to put another picture that is on the homepage and another random picture and it shows up...
I looked up the console of each browser but no info about it.
Do you have an idea of any possible solution of it?
I finally solved it:
The problem was that the image was not exported in png from photoshop but only "Save as", html didn't like that. In order to export it in png format in photoshop I did File -> Export -> Quick export as PNG.
Thanks

<img alt="" src="{{media url='wysiwyg/uploads/printing-shadw.jpg'}}"> not working magento

I have uploaded printing-shadw.jpg image into uploads folder and I want to display this image in my custom view. this image is visible at back end in WYSIWYG Editor but not visible at front end.
When I look up this image code in firebug it shows like
<img alt="" src="{{media url='wysiwyg/uploads/printing-shadw.jpg'}}">
Is something wrong ?
Check how you have the image specified in the editor. For magento, the wysiwyg folder is usually inside the media folder, so it would be in the format http://domainname/media/wysiwyg/imagename.jpg You shouldn't need to specify the braces anywhere in the editor for this.

Resources