I included different Tiles/Reports to my WebApp from PowerBI, according to this documentation:
https://powerbi.microsoft.com/en-us/documentation/powerbi-developer-integrate-a-power-bi-tile-or-report/#gettile
Everything runs fine, but when I include a Custom Visual Tile, it appears an error Message "this visual type is not yet supported or cannot be displayed due to security reasons".
Does anybody know how to solve that or any suggestions ? Is there an option/property for custom visuals ?
This is not yet supported. We're are aware of this limitation and will provide a solution. Could you create an item on ideas.powerbi.com to track this ask?
Related
According to this help document
http://community.jaspersoft.com/documentation/jasperreports-server-user-guide/v56/creating-calculated-field
I should be able to create a calculated field or measure for a Jaspersoft Adhoc view. However I don't seem to have this functionality available to me since I don't have the icon required to click on to create these things. Does anyone know if this is a new feature or whether this has something to do with restrictions on functionality due to licencing or something? Is there another way to create a calculated measure that I can use as a work around considering I don't have the correct icon to enable this feature ?
What version of JasperReports Server are you in? You can chek this in the login page, on the bottom left corner there is an About Jaspersoft link. There you can also check the license type.
This feature is available only for commercial edition.
So I guess you are a customer: have you tried reaching out to Jaspersoft support?
https://support.jaspersoft.com
I'm using SAPUI5
I allready create de Object Sap.m.popover, and appears on bottom of the button when click, but the arrow up its not there.
What i miss?
Thanks
Its due to missing of CSS. Please try to update the UI5 library. 1.28.7 version is recommended. Thanks
There are API properties for controlling the arrow positioning (placement) and it also depends on the device / browser how the arrow is displayed.
If the examples from the explored app or from the test page run fine for you, then try to copy the code from one of these resources:
Examples
Developer Test page
If this does not help, consider opening a new GitHub issue for OpenUI5 or an SAP ticket to analyze the issue.
I installed the Rest Console extension onto Chrome. I can't use this Rest Console for anything, because the only fields that accept text are 'Request URL' and 'Request Method'.
I ask here as there is no resources or community accessible for even simple instructions on how this extension works, and there are likely members of this community who have used this extension.
Use the Postman - REST Client it works perfectly!
your_url_to_post: Fill the URL
your_json_param: The name of the param that you'll pass you json
your_json_data: The json content
Don't forget to select x-www-form-urlencoded if you'll do a post
http://i.stack.imgur.com/TISW1.png
You should be able to enter text in the other field if you tick the checkbox associated to the field first.
I started having a similar issue myself (Forms wouldnt let me input data I could click them but thats as far as it went) across a lot of web pages to include my own php game and I know the form code hasnt changed at all before this issue started. I came across a article of someone else having a similar issue themselves that I was having and someone said that they needed position: relative on their forms that are not given specific instructions on positioning when dealing with google chrome. I have since made this change myself at www.immoralattack.com and the issue has stopped on that site but still continues on many others so its pretty safe to say that is the issue.
Its only happening on the dev build of chrome for me atleast and I hope this isnt something they plan on implementing on live or this will mess up alot of websites.
Also try turning off auto fill from chrome if its on, while I was looking for this bug I found alot of similar bugs but they delt with auto fill being on.
SlowCheetah is great, but I'm trying to get it to work with Sayed's custom transformation to support replacing partial text.
When I try to preview a transform I get "There was an error processing the transformation." I'm just using the project here as I would like to use both.
Currently preview for custom transforms are not supported for web.config. Sorry. This would actually be very challenging from a technical perspective as well. I have created an issue for this on the project site at https://github.com/sayedihashimi/slow-cheetah/issues/6, but it won't be implemented anytime soon.
I am trying to automate UI interactions for a C++ MFC application. I tried to find elements' automation ID using UISpy and UIAVerify tools. I am on win2k3.
There is a tab control, the automation ID of which is visible to UISpy but not to UIAVerify.
The issue is - it is not visible even to the C# code that I write using Project White framework or ui automation framework of .net 3.0.
I want to get handle to this control the way UISpy gets it. Is there any way I can find out how UISpy does it?
Thanks!!!
UISpy is likely using Microsoft UI Automation under the covers. You can see how this works from this example*. There are all kinds of conditions on AutomationElement which you can use to locate them.
I've only worked with WPF tabs, but found it really, really hard to locate them by Automation Id. Instead I've been using the AutomationName property, with the title on the tab as the value. Not sure if White supports this, but I'm pretty sure you can get the original AutomationElement out and use it as per the example.
You'll also probably be looking for something supporting the SelectionItemPattern (there's a SelectionItemIsSupportedProperty), and you'll need to use the pattern to select the tab and make it active before you can see anything in it.
Please comment if you need any more info. It might help to know what the structure of your container with tabs in is.
*Declaration of interest since I wrote this.