how to land to next page from first page in Google data studio - google-cloud-platform

I am doing a two page report in google data studio.The two page contains different level information like suppose the first page is for income level information and the 2nd page contains demographic information. Both pages are related. I want to add a filter kind of thing (I don't know how I can do) on the chart if I click on a part(if it is a bar chart and if I click on one bar) of chart it should go to the second page which contains more information about that group from first page. How to do this I have googled a lot on this but could not find anything.

From your description I would suggest that you review the following documentation it describes what needs to be done in order to create links to pages in your report Create links to pages in your report
It is a simple process;
You can provide links that take viewers to specific pages in a report.
Edit your report.
In the toolbar on the top of the page, click Text [icon].
Enter the text to display, for example, "Page 2."
Select the text you just entered, then on the right, click Insert link.
Click Paste a link or select a page.
Select a page in this report, or choose a dynamic link.

Related

URL link defined in a column, APEX 18.2 IG

I have an interactive grid where one of the columns is a url link to a picture.
Now I want some way to click on that link and open up that link.
Except the URL links in APEX demand a static link. Also, they open up over the open window, instead of another window or another tab.
I have gone through my options, googled for a couple hours, tried to perhaps find a solution that used a DA after clicking on the field and then a JS to redirect to the URL. But my google-fu is apparently not strong enough, and so I turn to you, good people of Stackoverflow.
What I want is a link inside an interactive grid which when clicked, redirects to a URL that it gets from a column in the IG.
Set you link column like this.
"ENAME" is a column.
Example: https://apex.oracle.com/pls/apex/f?p=150297:30:::NO:::

APEX 5.1.3 -- Clicking the Edit Button in the Report Page Shows a Form for Inserting a New Record

I am using APEX 5.1.3 to build a new desktop web application. I created a pair of Report and Form pages, and then ran the application, entered the report page. The data in the table was shown correctly, and each row contained a pencil icon at the leftmost column -- all looking fine.
However, when I clicked on the pencil icon to enter the Form page, instead of showing the record and let the user update the record, all columns became blank. The Save button was not there, instead the Create button appeared. This became the same behavior as clicking the Create button in the report page. What did I do wrongly, and how could I correct this behavior?
Seems I can find the answer after clicking the APEX edit page here and there...
I go to the edit page of the Report Page, on the left side, under Content Body, select Attributes.
On the Right side, under Link, click Target.
A new window appears at the center. I found the page no. is correct, but the Set Items aren't. Hence I click on the ^ button to select the correct column on the left, and values on the right. Click OK and then Save and Run the page. The problem is then corrected.
The reason for the problem is that for whatever reason, my original version has a value item which does not exist at all. Hence the data can't be brought to the form page when the edit button is clicked in the report page.

Sitecore 8 Insert link to items in bucket

I am using Sitecore 8.1 and Glass mapper ORM. In page editor mode, I have a link field which can be linked to news article page. The folder structure is
News/News article. News folder is of type Bucket and article is bucketable item.
When I am trying to insert link from other pages to the actual news article I am unable to find search box or expand items under news. Is there any way I can insert link to the news article? Appreciate any help! Thanks in advance.
You have 2 options:
In the content editor in the view ribbon you can enable "Buckets". This will make all bucket items visible again (the bucket is expanded and all folders and items can be seen in the tree). This setting is taken into account in the "insert link" window as well.
Use the search tab in the "insert link" window (normally you should have 3 tabs (link, media items, search). The search tab will let you find the bucketed items as well, but also others - it is not restricted to a bucket.
Edit:
After trying this myself, I noticed that if you edit the link field within the experience editor the search is indeed not provided (not even with the general link with search field). In the content editor the search is present.
A workaround is option1, or use an EditFrame. But I would contact Sitecore Support as well and ask them to add this - I'll do it too.
Edit2 : issue has just been registered as a bug. If you need a fix without waiting for a solution in a future version, you can ask Sitecore Support.

APEX 3.2: Button to download interactive report data to Excel

My requirements are to create two buttons. One button that will download all of the data in an interactive report (Select * from DB_TABLE). The other button will download the interactive report data based on filter items (Select * from DB_TABLE where Name = :P1_Name)
I thought about utilizing javascript:gReport.controls.download(); but that didn't seem to work.
Any ideas or sites you can point me to? Many thanks in advance.
And no, I don't know why they want two separate buttons to download the report instead of using the 'Download' button in the interactive report menu.
Set the Request value of the button to CSV, so your link looks like f?p=181:9:3839908094418724:CSV::::
This will only perform the default CSV download though. There is however no built-in way to get the query from an IR. What i mean by that is that an IR which has filters applied.
If you only want to download results which are filtered through page items in the where clause, and don't bother with any IR filters or such, you could set up a report on another page, and have your link for a second button target that page (with CSV in request, but do use a redirect). The browser will prompt you with a save dialog, but you'll not end up on the page.

Trac, how to organize pages hierarchically?

I use trac to manage my projects and I'd like to organize wiki pages the same way trac project does, i.e. by category, subcategory, etc. TitleIndex page on trac site gives a good explanation of the result I want to obtain.
How do I achieve this?
First of all, you can create hierarchically wiki pages, just by modifying the url, and press enter. It is also possible to create a wikilink first, and then press the red link.
For example, when your trac home page is http://trac.server.local/project/wiki, you can type /customers at the end of the url, and press enter. So the new url would be http://trac.server.local/project/wiki/customers. You will get an almost empty page with a button Create this page. Press that button to create that page. After that you can also create pages at the next level, for example
http://trac.server.local/project/wiki/customers/microsoft
http://trac.server.local/project/wiki/customers/google
http://trac.server.local/project/wiki/customers/apple
To generate an index, I use the HierWikiPlugin. On the /wiki/customers page, I enter just
[[SubWiki(customers/,1)]]
to get a list of all subpages below customers. To also see the subpages of those subpages, increase the level, for example
[[SubWiki(customers/,2)]]
You can add subpages using something like:
[[./SubPage]]
This generates a link to a non-existent page. When you click on the link, Trac shows you a page to create a new sub page or a page in the same level...