Hi, I have two applications in a same workspace.I want to set a global variable value in one applicationa and read it from another application. how it is possible in oracle apex. Thanks
Discy Latest Questions
I have an interactive report region with a where clause specified to filter the report based on the page item value. I need to set that page item value and then refresh the report region using JavaScript. How can I do that?
Ihave below javascript code in , button click dynamic action :- var model = apex.region("DETAIL_GRID_ID").widget().interactiveGrid("getViews", "grid").model; var v_data_type, v_col1; v_data_type = model.getFieldKey("DATA_TYPE"); v_col1 = model.getFieldKey("COL1"); model.forEach(function(r) { console.log(r[v_data_type] +" "+ r[v_col1]); if(r[v_data_type] == 'Change_color') { console.log('In Change_color'); //Here I want to change color of that cell text //apex.item( "COL1" ).setStyle( "color", "red" ); } });
Can we create a custom Sign In & Sign Up form in Oracle Apex for the public user? Like somebody else from the public what to register himself and enter some data and later again if when he login then he can able to edit or view-only his data.
Welcome to the community.
Hello everyone. I'm having trouble translating alert messages in Oracle apex. Since my language (Bosnian) is not supported by apex, I'm trying to translate entire application manually. I've done 90% of work already, translating strings in Shared Components/Globalization/Text messages. I have found text message names and English text values on official oracle website on this link. Now my problem is to translate alert messages. For example when someone downloads a report, success messages is shown in English. Or when I try to add entry in table, if there is some problem,warning is shown in English. Does anyone know where to find those strings, or how to translate them? I'll be really grateful. Thanks in advance.
what are the programming languages, frameworks, tools used to build this site https://orclqa.com/ ?
Hello Sir:) I want to create read only form, which retrieves data from the table. For that I created a region of type form and used SQL-Query as source. The page is rendered as read only always. But now I get displayed empty items, do I have to insert for each page item a default value type for example (sql-query) in order to set the item? or is there a better solution for this?
Hi! I would like to ask, how to use Global Temporary Table in Oracle Apex? Can I somehow manage to give each user a separate database session? Our current system works mostly with temp tables and we want to switch to Oracle Apex. Thanks in advance!
Hi Vinish, If any validation which fire either it from database trigger or constrains check then how we can capture and show property message. As most of the database errors appear like ’033-ORA-NOT VALID CONDITION’ How to capture this error and make it proper so user can easily understand. Thanks.