oracle-apex-5.1

Oracle Apex Radio Button

冷暖自知 提交于 2019-12-11 12:19:28
问题 I have a radio group with static values : A;1,B;2,C;3 . 1,2,3 are values from the column company where A,B,C belong . This is my SQL query . Select company into :p2_type from table where orderno = :p2_orderno and rownum = 1; This is a part of page 1 & 2 which are linked together . I don't see a selected radio group when I move on to the next page although I see the orderno move over . I created a process in page 1 so that it runs this query when I click the 'next' button which also redirects

Interactive grid column to display full content but read only

自古美人都是妖i 提交于 2019-12-10 18:48:30
问题 Environment: Oracle APEX v5.1.2 / Oracle 12c I have an interactive grid report by where I have one field that is a display only column but it actually returns an error message description that could be quite long. Since I would like to keep my IG report to one record per row, is there a means of being able to display the full contents of this field without allowing changes to the underlying column value in the database? Some means of a tool tip or being able to drill into the field to view

Apex 5.1 interactive grid hiding toolbar buttons

让人想犯罪 __ 提交于 2019-12-08 14:09:26
Is it possible to allow add and save actions but hiding the "add row" and 'edit" buttons in the grid toolbar? When I tried unchecking those buttons I was not longer able to add data to the grid progrmmatically. How can I allow adding multiple rows programmatically and having "save" button but hiding "add row" and "edit"? Try to add this css to your page: #myStaticIgId button[data-action="selection-add-row"], #myStaticIgId div[data-action="edit"] { display: none !important; } 来源: https://stackoverflow.com/questions/49681118/apex-5-1-interactive-grid-hiding-toolbar-buttons

Changing fields on dynamic oracle apex report

一世执手 提交于 2019-12-08 13:37:27
问题 Nor newbie and nor advanced apex user here, But, I'm very naive on major client side web languages, and now I need to face it. And soon. I have an example here - user : test and password test . I'm based on the very same jquery and javascript function from here, answered by Mr. Tony Andrews. At my app example, when the priority field is changed it puts in the value of A field , when its not 0, nor null . Its simply multiply the result in that field. I'm trying to put a change priority script

How to append a string to where clause in APEX Interactive Report SQL

依然范特西╮ 提交于 2019-12-07 03:50:33
I am a newbee in Apex and I am using apex 5.1.3. I am creating a report through sql query and where clause of the query should be dynamic which needs be taken from another table column. On page load i loaded this where condition string from table and set that as page item :P5_NEW I tried like this: select * from EMPLOYEES where :P5_NEW Page item :P5_NEW contains the string which should be appended to where clause. But apex throws error ORA-00920: invalid relational operator . Can some one please advice how I can append a string to where clause in APEX report query? Thanks P5_NEW (well, why not