URL link defined in a column, APEX 18.2 IG - oracle-apex

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:::

Related

How can I view all the content of redmine, such as projects and tickets, easily on the screen?

I'm using REDMINE.
I have a list of projects on the screen.
Is it possible to add details of the ticket content to this screen?
I'd like to look over the screen at once instead of clicking with the mouse, how do I do that?
Also, if you have any plugins or useful tips and so on, please let me know.
Tamazawa, I believe you might be referring to "My Page" of Redmine where you could use widgets to decide what you see on that dashboard - keep in mind that such dashboard s project independent, so it can display issues from many projects that you are a member of on 1 screen.
For instance from My Page, you should be able to select an "Issues" widget to Add and set it up to pull a list of items to display using a saved custom query.
That should give you a snapshot of tasks at hand, without the need to click around the screen too much.
You may need to set up your saved query such that:
Description and / or
Last notes
are checked (if you want to see issues at a glance, without the need to open each one separately).
Alternatively, you can skip that "My Page" idea altogether, if you're ok with just opening a saved query with Description and / or Last notes selected.

Multiple conditions on single button with Dynamic Action in Oracle Apex

Please see below screen shot I have one button "Add Row" on the top and items in a single row of Oracle Apex Form.
I have add 10 Rows with same items list on each click of the top button. Could you please help on this how can I achieve this.
if I understood you correctly and you want a dynamically determined amount of files to upload, there are many options for that
Easiest 1 - upload one at a time, and show the user older files that were uploaded.
Easiest 2 - Use the "Allow multiple files" option, and later on allow the user to edit names
https://jeffkemponoracle.com/2016/08/file-upload-improvements-in-apex-5-1/
Easy option:
Create a modal dialog form page for uploading the documents, and make the "add row" button a link to open that modal dialog page.
Harder option:
Using the APEX_ITEM package, and dynamic actions:
https://dzone.com/articles/super-dynamic-apex-forms-using-apex-item-and-dynam
If on the other hand you know you're always going to have 10 items uploaded, I suggest just creating them all in the app builder, and save time..

how to land to next page from first page in Google data studio

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.

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.

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...