TestLink1.9.12 Cannot export report in excel format - testlink

I used Testlink 1.9.12 at Report and Metrics on Report format the dropdown for "MS excel" and "MS Word" is disappear while i test on TestLink 1.9.7(Ghost). The dropdown is appear
You can test in this link below 1.9.13 is appear to be the same
http://demo.testlink.org/latest/index.php
Do you guy have any idea is that a bug or wrong configuration

Actually I have found it in the change of this version the excel has been removed from dropdown box and use it as a small icon on the top of report item as the small green excel icon

Related

How to Hide Interactive Report Setting Area in Oracle Apex

I want to hide Interactive Report Setting/Filters Area.
I found to hide Interactive Grid's Report setting area in Interactive Grid Cookbook
function(config) {
config.reportSettingsArea = false;
// may want to disable the highlights feature. Comment out this code to make initial highlight settings
apex.util.getNestedObject(config, "views.grid.features").highlight = false;
return config;}
To remove completely the settings regions of an interactive report you can do as follows:
Give your Interactive Report region an static id (under your regions attributes scroll over "Advanced" and then "static id");
Under your page properties (first tab on the left on page designer mode) :
Go to CSS section and then paste the following code in the attribute "In line" (I'm assuming your static id is "IR_ORDERS":
#IR_ORDERS_control_panel{
display:none;
}
(if you are using ver 18.1 up)
GO to Attributes then under Search Bar find Finder Drop down and set to No.
To remove completely the settings regions of an interactive Grid you can do
past the below code in PAGE>>CSS>>inline .a-IG-controlsContainer { display:none; }

SAS EG -How to keep "Program" window open when error in log

I've just switched to SAS EG from PC-SAS. If I run code from the Program tab, and it creates an error, my view is automatically changed from the Program tab to the Log tab. I'd like to turn this off. Is there an option for this?
Go to menu Tools-> Options -> Results. Under managing results section, uncheck "Display SAS log when errors occur."
As a side note, under Tools->Options->SAS Programs->Editor Options you will find a familiar menu for customizing how the editor looks and works.

How to change the appearance of PROC PRINT output in SAS to "notepad" style?

If I run a basic proc print in SAS, I get an output that looks something like this:
Is there a way to (easily) change the appearance of this to look something like this (taken from here):
Any help would be great. Thank you.
Assuming you're in display manager, click Tools -> Options -> Preferences -> Results, then check the box next to "create listing". This will send your output to the listing destination which was the default destination before SAS 9.2. You should be able to save your listing output as text like the example you posted.
If you're in Enterprise Guide, click Tools -> Options -> Results then select the "Text output" box.
IF you are using SAS Studio just click on the top right corner menu icon, then:
Preferences -> Results
And select Monospace in HTML Output Style.

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.

Does ColdFusion Builder have split screen editing like Homesite+, and how do I turn it on?

Does ColdFusion Builder have split screen editing like Homesite+, and how do I turn it on? How do I activate word wrap?
Thanks much!
In order to see 2 files tiled at the same time within ColdFusion Builder 2, follow the steps below:
Open the file
Right click the tab with the file name
Choose Move Editor
You will see the file outlined in black in the interface, it is now attached to your cursor
Click to the right of the Source tab in the open area
This will allow you to view both files at the same time, one above the other
The file you select will be the active file
You can still use the Source and browser tabs, they will reflect whatever file is the active one
Word Wrap:
Go to Window > Preferences > HTML > Editors. Click the Advanced tab and check Enable word wrap. Restart CF Builder.
If you want to compare 2 files, there is an easier way.
Select both files
Right-click one of them
Select 'Compare With --> Each Other
Eclipse will then show you the 2 files side by side, and highlight any differences.
ColdFusion Builder 2016 (AKA 3.1) offers "split view" for both horizontal (CTRL+_) & vertical (CTRL+{), but the hotkeys don't appear to work at the moment. This can be accessed via the "Window | Editor" menu. You can also search the "Quick Access" search box and type "Split" and then choose the toggle options that appear.
In ColdFusion Builder 2016 the keyboard shortcut is: (CTRL+SHIFT+_) AND (CTRL+SHIFT+{)