In Oracle Apex 18.1, Inteactive grid doesn't show HTML-Expression Column - oracle

I am Using Oracle Application Express 18.1, and having some troubles using Interactive Grid. I've set Interactive grid that has pagination
(Interactive Grid - Attributes - Pagination - Type : Page).
When its type is Scroll, I can see the HTML-expression column (Pagination - Type : Scroll),
but after I change setting, HTML-Expression column can't show its own value.
Below is Column setting details
Column Name : Thumbnail
Type : HTML Expression
Settings : <img src="&IMAGE_URL." width="100px" height="100px" alt="">
It should display the image, but It can't.
How can I solve this problem?

Related

Rendering null values in vertical Classic Report

I have migrated my application from Oracle APEX 5.1 to 20.2.
I have a classic report (showing 1 record) that uses the predefined template type "Vertical Report". I use it to show the details of the recording. NULL columns are not rendered after migration. I can't find a suitable setting (in 5.1 nullcolumns are rendered).
If I understood you correctly, try to set
region's type to "Classic report"
template: "Standard"
(under region's attributes)
template: Value attribute pairs - column
I checked, NULLs are rendered.

Oracle Apex LOV return mutiple value just like forms 6i lov

Oracle Apex LOV return mutiple value just like forms 6i lov
in interactive grid layout how to return mutiple value if user select from list
PLEASE SEE PICTURE
LOV
Region detail interactive grid
ig PAGE ITEM TO ig COLUMN VALUE
Dyanmic action on ig column and set value from page item
I just created an Interactive Grid and set one of the columns to be a Popup LOV. In the settings for that column, I saw this:
Once I enabled Multiple Values, I was able to select multiple values:
If that doesn't answer your question, please update your question with more detail as to what you're trying to do. The pictures you provide are not enough to understand.

change oracle apex tabular form column width

To change the column width of a tabular form, I have to put the below code into the HTML EXPRESSION field
<div style="width:20px;">#COLUMN_NAME#</div>
Is there any better way to do this? such as via the CSS on the header of the region?
Thanks
In form page, if you click on specific column, you will find menu on the right hand side. You can change column width under Appearance section or Advance section. There are places to change the column fields in under that sections.
Under Appearance section you can enter from width field.

how to get elements display properties in javascript in BIRT?

Hi i have a table and few text elements in my birt rpt design file.
i am using birt 4.5.
i need to display those text elements in the report based on the table's display property.
If the tables display is'none' then my text elements should get displayed in the report.
how can i achieve this?
i tried with the following
reportContext.getDesignHandle().getElementByID(927).getStyle().display
927 is tables id. getstyle is always returning null. So how to achieve my requirement.
hi the following code works fine
reportContext.getDesignHandle().findElement("mytable").setProperty( "display", "none");

Display Column and Return Column LOV

I am working in Oracle APEX(Application Express). When I want to create a List of Values (LOV) it gives me only one option for displaying and returning value. Is there any method in APEX so that it can Display me more than one column.
No, there is no way to display more than 1 column by default.
You could alter your lov query to concatenate multiple column values into a display columns
select empno return_value, empno||': '||ename||' - '||job display_value
from emp
You can steer markup through the Popup LOV template too, if you'd want to use a fixed width font.
Use a plugin such as the SkillBuilders SuperLov. However, this plugin does not work in tabular forms.
Roll your own by using for example modal pages (again, SkillBuilders have an excellent plugin for modal pages), or through the use of javascript (ex creating new windows and handling returns)

Resources