Is it possible to integrate Kibana dashboard in my application instead of my application dashboard, that means when you click on dashboard tab it should open Kibana dashboard.
Of course you can! :-)
Just open your particular Dashboard in Kibana and you should see a "Share"-Button like in the following figure.
You can decide between an HTML iFrame snippet (Embedded code) or an URL (Permalink) to your dashboard. Note the difference between Saved Objects and Snapshots:
Snapshots will only display the data at the time you take the snapshot, hence any updated data will not be displayed.
Saved objects on the other hand can be seen as references to the dashboard itself and will have the most recent data.
Cheers
Related
I am reading this official documentation https://learn.microsoft.com/en-us/azure/databricks/sql/user/dashboards/ in order to send the dashboard result visualized charts as email to project stakeholders.
from the official documentation, i should see a Subscriber button in notebook or dashboard like below.
But i can't see it. i see the share button, but doesn't see the 'Subscriber' button next to 'Share'. Please refer to below screenshot for what I see.
Anyone know what's the issue here?
Documentation that you're referring is for Databricks SQL, but you're working in the notebooks that doesn't have subscribe functionality. If you have SQL dashboard, switch to it using SQL item in the dropdown top left of the workspace UI:
Is there a way to clear the indexeddb data for a specific site? I'm trying to test in localhost and need to clear the data occasionally but I don't see any GUI like in chrome:
From the dev tools switch to the Storage tab.
On the right panel, expand Indexed DB sub-menu and the website url you are interested in.
From there you can right click on each store and "delete [store name]".
Have one HTML and two PDF documents kept on the DB server for the APEX schema. These are accessed by clicking on a List item. Currently these work... however the documents open in the same tab. Want them to open in a new tab.
The URL target for the HTML document is...
&GBL_SERVER.&GBL_IMAGEPATH.mcs_faq.htm
URL targets for the PDF documents are...
&GBL_SERVER.&GBL_IMAGEPATH.PermitFees.pdf
&GBL_SERVER.&GBL_IMAGEPATH.Map14ft6in.pdf
All the URL targets use two different shared component Application Items, which are set with an Application Process - creating global items used in the URL link. These change dynamically depending if you are the development, test, or production server.
Have tried changing the URL target by adding JavaScript...
javascript:window.open("&GBL_SERVER.&GBL_IMAGEPATH.mcs_faq.htm.","_blank")
Have also tried going to the "User Defined Attributes" and adding... target="_blank"
Nothing I have done appears to be working. Perhaps the JavaScript syntax is not quite correct? Are there any suggestions what else should be looked at please? Thank you!
My URL comes from a database field. Idefined the data as
http://xxx.zzzzz.com/sss/" target="_blank
My oaf page has a table region, the next link in the table region to fetch the next 10 rows is not working however this same code while I deployed it in our local server was working fine.
Only in this new server I'm facing this problem all other features in the page are working fine.
I have imported the page using xml importer.
Check your datasource; Make sure the query that brings your result has more than 10 rows. This could explain why you cannot use this next page button.
Maybe check server logs?
Maybe enable Javascript for that new site on your IE?
Otherwise, you give so few information about your issue that it's difficult to help.
Let us know if you discover what's wrong.
I just added an OpenGraph image to a site I'm working on and using the FB Debugger the info retrieves the correct image, however when sharing the url I still see default images being displayed (there was no specified OG image before). Is there something I'm missing here? The site uses a custom Python based framework and image is served via gzip from an Amazon EC2 instance, if that would affect the output in any way.
The problem is not with your website.
Facebook takes some time to refresh images inside facebook.com even though you can see the changes on Facebook Debug Tool.
In order to view your new image inside Facebook you can do two things:
Manipulate a little the URL you are trying to share, this way
Facebook will fetch the open graph data again.
Just give it some
time, it will be refreshed after a few hours.
There are three way to change your image you need to clear the
1) Manually clear facebook catch using the https://developers.facebook.com/tools/debug/ facebook tool
2) Add version code end of the url like ?v=1
3) write the GraphAPI code from when you click on the share button it will clear the facebook page cache.