
Vorsätze fürs neue Jahr
Neben den zahlreichen Softwareprojekten, werde ich mich auch weiterhin mit neuen Spezialgebieten auseinandersetzen. Ganz oben auf der Liste steht die...
Neben den zahlreichen Softwareprojekten, werde ich mich auch weiterhin mit neuen Spezialgebieten auseinandersetzen. Ganz oben auf der Liste steht die...
Blog Update Wie ihr sicher schon gesehen habt, habe ich mein Blog Layout überarbeitet. Ziel war es, die Inhalte besser darzustellen und unnötigen Ballast...
Ich habe vor die Plugin App mit einer entsprechenden mobilen Version zu erweitern. Dazu benötige ich allerhand Hintergrundwissen und das trage ich...
The standard way to check the authorization is to select the correct scheme inside the security area: What are authorization schemes and how do you...
A couple of days ago I released a new simple plug-in. A dynamic action plug-in which allows you to bookmark the current or any other page by running...
Nachdem die erste Präsentation sehr erfolgreich verlaufen ist und das Feedback sehr positiv war. Möchte ich nun die Anwendung für den Rest der APEX Community...
Just saw this nice script to generate INSERT statements by a function call: PL/SQL code to generate Oracle insert statements from existing table data Another...
This a simple solution to compare two comma separated lists inside a select where clause: /* Table name: TBL_WITH_COMMA_LIST Columns: twc_id; twc_list 1...
Leider kann ich nicht bei der diesjährigen DOAG Konferenz dabei sein. Ich hätte zwar liebend gern die vielen APEX Entwickler wieder getroffen, aber es...
During my development I was always troubled that the loading icon plug-in worked fine with before page submit events but never worked when you redirected...
If you want to disable the "Richt Text Editor" inside APEX and still show everything in the right HTML format. Just add this code snippet inside the...
Wie bereits Gestern erwähnt, bin ich in den letzten Zügen der Entwicklung für die "Plugin App". Heute wollte ich aus ein paar hässlichen Buttons ein...
Nochmal die Erinnerung: Vom 24. bis zum 26.10.2011 findet der "Oracle APEX: Knowhow aus der Praxis" Workshop in Bensheim statt. Ich halte am Montag...
I added some fixes to the UILayout plug-in in combination with APEX 4.1 and the Interactive Report appearance. I'm quite busy with the Plugin App and...
Die Plugin App hat einen schon recht hohen Reifegrad erreicht. Da ich aber noch bis Ende Oktober Zeit habe, werde ich noch versuchen ein paar weitere...
Es ist wieder soweit, zwischen dem 24. und dem 26.10.2011 findet der "Oracle APEX: Knowhow aus der Praxis" Workshop in Bensheim statt: Diesmal mit...
Since 2008 I write about APEX, Javascript and PL/SQL and still like it a lot. It seems that people think that I do right:If people around the world like...
Bei der Entwicklung der Logbuchanwendung habe ich auch gleich ein kleines aber feines Plugin mit integriert, dass es so nicht als Download zu haben gibt.Es...
Ich arbeite mit ein paar Freunden derzeit an einer Applikation die sich Logbuch nennt und das Ziel hat, möglichst viele APEX Plugins in einer Business...
I used the automatic file upload feature of APEX and got always an error that either filename or mimetype column of my file table can't be null. APEX...
If you need to restore your changed or dropped package then use this select to retrieve the lost information:http://www.blogger.com/img/blank.gif select...
If you use the UILayout plug-in for APEX with Interactive Reports you will see some issues inside the action menu. The "Rows Per Page" and the "Format"...
If you want to remove easily a single rule inside your interactive report then use this javascript code snippet: $('a:contains(Vorname ist Null)').parent().parent().remove(); Customized...
I had the requirement to find out if a part of a string includes only number values:Table: My_Test_String_TableColumn: T_STRString 1: TIGER031STDString...
With Interactive Reports you are able to save several views of one report source. - Default - Public - Private Your end user can easily choose from...
I just released a new plug-in called: Hyphenation for APEXUnfortunately at the moment it seems only to work with Firefox. I contacted the developers...
Basically with a single table you do like this:SELECT COLUMN_A, COLUMN_B, COUNT(*)FROM MY_TABLEGROUP BY COLUMN_A, COLUMN_BHAVING COUNT(*)>1;If you...
Ich habe vor ein paar Tagen ne interessante Frage gestellt bekommen:"Wie überprüft man in Apex, ob ein Flash Plugin installiert ist?"Antwort:Einen Standard-Check...
First wayThis example uses "REGULAR expressions" and the "connect by" clause. Perfect when you select on columns including lists.Forum entry: http://forums.oracle.com/forums/thread.jspa?messageID=9494074WITH...
Troubleshooting the following APEX error:ORA-00001: unique constraint (APEX_040000.WWV_FLOW_DATA_IDX1) violatedERR-1029 Speichern von Sessioninformationen...
How to handle more then 32k (32768) characters inside your APEX charts: AnyChart gantt with custom xml and more then 32kWorkaround: - Create your own...
Do you like the Super LOV as much as I do? It is just a great plug-in.Some customers didn't like the delete button to erase the selected value. I could...
Create a new image called report_bg_red.gif:Add this inside your page header to exchange the IRR default image:.apexir_WORKSHEET_DATA th { background:...
Use this sql select to count a special character inside a column or string:Column selection:select col, length(col)-length(replace(col,',','')) from...
Try to set two POPUPKEY_FROM_LOVs beside each other with the column ids: 2,3selectAPEX_ITEM.CHECKBOX (1,ac.ac_id) as ac_id,APEX_ITEM.POPUPKEY_FROM_LOV(2,ac.application_key,'lov_apps',50)...
Have you ever looked for a solution to create an "add favorite"-button which let the user bookmark your website. You probably found out that each browser...
Just saw this nice compilation of HTML/CSS button solutions.speckyboy.com: http://speckyboy.com/2009/05/27/22-css-button-styling-tutorials-and-techn...
To help the suffering people of Japan my applications from now on "cost" a donation (no matter how small or big) via any aid organisation of Your own...
I'm a bit surprised that there is no range slider plug-in for APEX yet. At least I couldn't find one.There are a couple of nice examples out there in...
Ich habe heute eine Frage im APEX Forum beantwortet. Diese recht trivial klingt, aber in der Konstellation doch recht anspruchsvoll wurde.Ausgangslage:Ein...
To hide IRR filters always after the page load just use this little JS code inside a dynamic action (event: "Page Load")/* Hide IRR filter after page...
There is a bug/misbehavior inside the IRR column headers in APEX 4. When you create column names with linebreaks (using the <br> tag) inside then...
Falls Sie auf den Fehler ORA-20503 während der Arbeit im APEX Application Builder treffen, dann wird ihnen dieser Blogeintrag hoffentlich viel Ärger...
I just stumbled into a problem where I needed to clear the page cache inside an APEX PL/SQL process.It is quite easy if you know how:APEX_UTIL.CLEAR_PAGE_CACHE...
Just saw the nice looking freeze panes example of Andy (ATD) in the Oracle APEX forum.It is to good to not being mentioned. Example:http://apex.oracle.com/pls/otn/f?p=267:47For...
Wenn Sie eine APEX Anwendung mit Session State Protection verwenden, dann muss jeder Request entsprechend ihrer Einstellungen mit einem sicheren Hash-Schlüssel...
One of the problems of an layout extension is the initialization time.Normally the UILayout needs a couple of seconds to initialize (1-3). Depending...
To hide or show items and labels with jQuery use this syntax: $('#P1_NAME').hide(); $('#P1_NAME').parent().hide(); $('#P1_COMPANY').show(); $('#P1_COMPANY').parent().show();...
What's new: - New plug-in for the styling of the UILayout. Styling is now completely supported by either the plug-in or your own CSS files. - Bug fixes...
A new version of the UILayout plug-in for APEX is online on www.apex-plugin.com: UILayout 1.1 - UpdateI added a couple of features. Like sizing, disabling...
I finished the first part of the UILayout Plug-in. For me it is the first plug-in as well. Any feedback is much appreciated.It handles the initialization...