i want to Pop up a .aspx page from my own project using crystal repot object
e.g there is an text object on crystal report VIEW ATTACHMENTS , if user click this , a .aspx page should be pop up showing some attachments etc
right click on the text object, click on Format Editor, and go to the Hyperlink tab. Select the "A Website on the Internet" in the "Hyperlink type:" area. Add the hyperlink to the "Hyperlink Information:" area. If you need multiple hyperlinks based on different criteria you will need to set up a formula.
Related
I want to display images of 10 people on my dashboard, when i hover the image dynamically it needs to display a wiki page to the side of each image related to that person, how do i achieve this in tableau?
Here are the steps after you have a dashboard with your people on one of the charts. My example uses the pesticide list from the most recent #makeovermonday.
In your dashboard, drag the web page object in.
Click the option dropdown of that new object and click Add URL Action.
In the popup place the main portion of your wikipedia url in the box and select your people field which will become the dynamic portion of the URL. Mine is pesticides.
Change Run action on to Hover
Now when you hover on your main chart it will update the web page object with the person hovered on. I just hovered on Atrazine in this image
You will probably have to update your people names to make sure they match wikipedia's url.
I want to show the date of the data source refresh but I did not find any Tableau function that can help me.
Do you know?
Thanks.
Yes, it can be done. Here are the steps (found here):
Option 1: Add the time stamp to the top of the view
Open the workbook that contains the dashboard in Tableau Desktop, and then navigate to the sheet for which you want to display the time of the last data refresh.
Select Worksheet > Show Title.
Double-click the title.
In the Edit Title dialog box, select Insert > Data Update Time, and then click OK.
Add any field to the filter shelf and leave all selections blank and click OK.
Save the modifications.
Add sheet to dashboard.
Option 2: Add the time stamp to the bottom of the view
Open the workbook that contains the dashboard in Tableau Desktop, and then navigate to the sheet for which you want to display the time of the last data refresh.
Select Worksheet > Show Caption.
Double-click the caption.
In the Edit Caption dialog box, select Insert > Data Update Time, and then click OK.
Add any field to the filter shelf and leave all selections blank and click OK.
Save the modifications.
Add sheet to dashboard.
8 . Right click the sheet and select Caption to show the update time.
These sheets can be sized in the dashboard to take up as much or as little space as necessary. They can also be set up as floating objects so that they do not resize the other sheets in the view.
The easiest way is to:
double click on Title (on the Sheet)
click the Insert button
click Data Update Time
Im pretty new to JasperReport Server. I have had success using JasperReport Sever 4.7(Community edition) and calling jasper reports (using jasperviewer)from within a java application.
My problem is:
1. To create my own parameter form which pops up when a user clicks a button linking to a jasper report.
User to be able to enters the desired parameters (preferably selectable from a list) then when the user presses enter or ok on this page, it passes the values to the jasper report accordingly.
Any assistance would be highly appreciated.
For the first, when you create your report and save in your Jasper repository -
Just right-clik the report folder (the one containing your Main.jrxml) and click on Properties. A dialog box appears.
Go to Other tab. Next to Controls Layout label there will be a drop-down box. Select Pop-up Screen on that. Your job is done.
For the second, you can definitely have a select list. There are two ways to generate values for the list - by using a query or entering manually. The steps are:
In your report folder in the repository, under your main.jrxml file there will be an Input Controls folder. Right click on it and click on Create a local input control. A dialog box will appear.
On the General tab give the ID and name for the input control (ID must match to your respective parameter name).
Go to Input Control Details tab. Select type as "Single Select Query" or "Single Select List of Values" as per your requirements. Enter the query or values and your job is done.
I am working with ssrs reports. I have a summary and a detailed report. The detailed report is linked to the summary report. Now the user wants to have a "Return to Summary Report" link in the detailed report.
My main problem is I have multiselect parameters in the Summary report. I know the solution if I have single select parameters. In that case I can create a textbox with text decorated as link button and in the Action property of the textbox I choose Jump to report and provide paramaters which I get from the previous report. This method works for single select parameters in the summary but I dont know how to handle the multi select.
Also we do not have the small button that ssrs provides to go back to reports. So thats not an option I can use.
Any ideas will be appreciated.
In the Action property Ihad to select the "Jump to URL" option and put this in the textbox for Jump to URL:
="javascript: history.go(-1)"
Here is whre you have to place javascript:history.back(1)
right click on the report
click insert -> textbox
once the text box is created
right click and choose "Text box properties"
click "Action" property
choose Go to URL option button
copy and past javascript:history.back(1)
(Note: it is case sensitive, you don't need to put quotation mark")
then click ok and this should be working in IE
I am trying to write an editor for a particular type of file in Eclipse which has multiple pages, just like the PDE editor.
How do I get a hyperlink in the main Overview page to point at one of the individual pages?
I've got the hyperlink drawn but I don't know how to link it to the actual page so that when a user clicks it, the page view changes.
Any ideas?
Follow this recipe:
Create the main page and all the sub pages
Add links
Add HyperlinkAdapter to the links using link.addHyperlinkListener()
In linkActivated() you can switch the page with formEditor.setActivePage(...)