How to display html webresource on top of MS dynamcis CRM main page - html

I have created a HTML web resource which contains jQuery DateTime Picker control customized as per my needs. When I add it to the CRM entity page it shows an input fields as usual. However when I click into this input field, the DateTime picker control gets opened but not visible completely on the CRM page.
Can anyone help me to get this?

I'm afraid that this is an issue with iframes and browser security. Please see This Post for the reasoning.
I see that you have two options. You can use unsupported methods to add the date picker control to the CRM form page, which would take some somewhat-serious hacking or you could expand the web resource to accommodate the date picker control.

Related

how to remove report header part in SSRS drildown mobile report

i have .NET application where i have iframe and i am loading SSRS drildown mobile report URL into iframe and it's working but when i moving to 2nd lavel of drildown report it's loading report but report header apears which i don't want to show to the user.
i am using below URL to load drildown report
iframe.scr = "http://Desktop-1213/SSRSReports/mobilereport/MainReport?rs:Embed=true";
want to remove the hignlighed in red color one.
another way i have tried, used rs:Embed=true in dripthrough custum URL option but it's opening in different window. but i want in same window.
let me know if need more clarification
Take a look at the documentation here and search for rv:HeaderArea. It may lead to a workable solution. I would also be curious what rc:toolbar=false would look like in your situation.
https://learn.microsoft.com/en-us/sql/reporting-services/url-access-parameter-reference
If all else fails you can retrieve the raw report as html40 directly form the api, however, most of the navigational features will have to be re-implemented.

SSRS: How to display a report title on the parameters page

My clients have upwards of 40 reports with very similar parameters. These are hosted on SharePoint, but are consumed by users through a web application, and so when a report is selected and the parameters are shown, the report's title is lost. My clients are irritated that they don't know, from the parameters page, which report is being displayed (many have very similar names and they are selected from a grid, and so mis-clicking is an issue)
Is there some trick to showing the report title on the parameters page?
Thanks
Edward
I will suggest to add an additional parameter and show the report name in that.
Some points to highlight in your question.
First, I don't know any trick for showing the title in the parameter pane, as a matter of fact, I don't believe it does exist. Showing it as a parameter is something that I wouldn't do as a solution for a customer.
Second, not showing the little line with the report's path is something that can be chosen when invoking the report (by means of url, see links below) and if they are accessing through another web application, this should be the one taking care of this matter. Note that if you show the url or the little line with the path, you can compromise security (access will depend on folders setup, but you leave a door open). This web application should know what is it showing and should display the right name (any the actual report's name or a custom name within the web app). This is what happens when you embed SSRS reports using a browser in an external app.
Third, the report itself should have a title displayed once the report is executed.
As a summary, I don't believe this issue's solution is under SSRS management/development scope.
Links to know more about executing SSRS with an URL.
http://msdn.microsoft.com/en-us/library/ms155391.aspx
http://msdn.microsoft.com/en-us/library/ms155391.aspx
As you can see, there are lots of things that you can do playing around with the url, such as:
Pass parameters
Hide path pane
Hide parameters pane
Render format, you can call an url asking for an excel or pdf render and you get the download dialog for the file.
Hope this helps.

SSRS PopUp Message Box

Ive had a request from a client to make a popup box appear on the click of a databar within an SSRS report. Not had any luck with various Google Searches and just wanted to know if anybody has either got this work directly or has any suggestions for a workaround they have used?
Bit of background on the actual report itself, it simply contains a table with various stacked DataBars showing comparable data between multiple users in a system. The ability is needed to click a bar and see which User that bar relates to.
Any suggestions are appreciated.
It's not quite the same thing, but you can use the SSRS tooltips functionality to achieve something similar, i.e. a user will hover over a part of a chart and some contextual text information will be displayed.
Show ToolTips on a Series has some further information.
You can add an action to an object with a javascript popup which can show a specific URL or another report. In the action click on Fx to set an expression as follows:
I used a different script to popup a URL which contains an image url from the database:
="javascript:void(window.open('" + Fields!ImageURL.Value + "', null, 'width=800, height=500, status=no, toolbar=no, menubar=no, location=no'))"
( you can replace Fields!Image.Value with a url , this is the URL from a database field)
a
On a PC this will showup properly sized as a popup. On an iPad it will appear as a new tab.

How to set focus on tab in tabcontrol in URL

I am trying to call a page in my customers webapplication (Exact Synergy Enterprise)
This is the link: http://someserveridontdisclose/Synergy/docs/CSCANEduCourseCard.aspx?ProjectNr=ACPGINTV
Within this page is an Ajax TabContainer with several TabPanels. One of them is called 'Doelgroepen'
I dont have the source for this application, as i am not the developer of it. We only develop custom extentions to it.
Here's the question: Is it possible to focus on one of the tabs USING ONLY AN URL? If so How?
Thank you very much for your thoughts about this.
try to set with javascript. you'll have to write your own js to get index number you want from url, then set like this
$find('<%=TabContainer1.ClientID%>').set_activeTabIndex(2);
http://forums.asp.net/t/1127834.aspx
http://www.aspforums.net/Threads/420684/ASPNet-AJAX-TabContainer-Set-Active-Tab-Client-side-using-JavaScript/
If you do not have access to the code and if this is not part of the requirement / design specification for the application you are using (ie: what you asked the developer to do), then the answer is No.
The control does not have "native" support for URL tab selection. There needs to be specific code in the application in order to handle this.
It is however very easy to implement, if you absolutely need it, it shouldn't take much time (about 15-30 lines of code, depending on how many tabs/urls combination you need).
You can find a running sample of the AjaxControlToolkit Tabs control at the following link (the available functionnalities are described in there):
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/Tabs/Tabs.aspx
If the TAB has an ID you could make it visible by adding '#tabid' to the URL.

Single page display in HTML rendering : SSRS

I have a SSRS report. I am using grouping and my report is having n number of pages.
Is it possible to have the html display of the report in a single page with out page break and the exported version( pdf, excel) have the page break). Any idea. Please share some thoughts.
Thanks in advance
Anna
Short answer: Set the InteractiveHeight = 0
According to Microsoft:
Soft page breaks are calculated at run
time by the control. Although it is
not recommended, you can disable soft
page breaks by setting
InteractiveHeight to 0.
InteractiveHeight and InteractiveWidth
are used by the HTML rendering
extension to provide the equivalent of
PageHeight and PageWidth. Because the
HTML output format dynamically resizes
a report to accommodate drilldown,
drillthrough, and show/hide features,
the report server uses different
properties to support pagination on
dynamic pages.
EDIT Comment Answer:
In the Layout mode, bring up Properties panel. At the top of the Properties panel is a drop down to select which control's properties you are looking at, select Report You will then find “Interactive Size” that includes Interactive Height property.
What version of SSRS? 2008 lets you specify a different page size for interactive and regular paper (ie the html version will render different than say PDF).