Browsing "Older Posts"

Browsing Category "APEX Plugin"

Der Fahrplan bis zur APEX Connect 2019

Von Tobias Arnhold → 2.22.2019
Im Mai 2017 hatte ich euch gefragt worauf ihr euch am meisten freut was die damals anstehende APEX Connect betraf.
Nun schreiben wir das Jahr 2019 und bis zur Connect stehen noch einige Events vor der Tür, bei denen es neben dem technischen Wissensaustausch vor allem auch um die Vernetzung und das teilen des gemeinsamen Spirits geht.

Und falls Ihr euch fragt weshalb ich immer und immer wieder von "Spirit" rede, dann schaut euch mal den Artikel "#NextGenTrip18 — Community at Its Best" im ORAWORLD Magazin auf Seite 39 an. Dieser repräsentiert das Wort "Spirit" ganz gut. :)



Hier nun der Fahrplan bis zur APEX Connect 2019

Meetups
Das nächste Meetup findet am 11.03. in München zum Thema "APEX 19.1 New Features" statt.
Die anderen Meetupgruppen befinden sich noch im Winterschlaf. News gibt es aus Dresden, dort wurde eine neue Meetup Gruppe gegründet. Das erste Treffen ist bereits in Planung.
Eine Übersicht aller Meetups findet ihr auf apex.world.
Eure Stadt fehlt? Ihr wollt aber trotzdem eine Gruppe gründen und wisst nicht wie? Schreibt mich einfach an (Twitter, Mail) und ich versuche euch dabei zu unterstützen.


Workshops
Am 18.03. findet ein kostenloser APEX Workshop in Trier statt inklusive Hands On. Beeilt euch die Plätze sind begrenzt.

In Frankfurt gibt es am 13.03 einen kostenlosen Oracle Datenbank-Technologie Tag.

Zwischen dem 09.-10.04 bietet die MT AG einen APEX Migrations-Workshop an. Geeignet für alle die endlich auf APEX 18.2 migrieren möchten.


APEX Competition
Bis zur Connect läuft parallel auch die APEX Competition 2019 bei der es darum geht ein APEX Plugin zu entwickeln. Der Gewinner erhält 850 €.
Die Competition läuft noch bis zum 07. April. Genug Zeit für eurer erstes Plugin, den passenden Einstieg findet ihr übrigens in diesem aufgezeichneten Webinar:
Entwicklung von Plug-ins für Oracle Apex – Kurzer Einstieg


Im Mai findet dann die heiligste aller APEX Veranstaltungen im deutschsprachigen Raum statt:

Die APEX Connect

Am Vortag der Connect dem 06.05. (Montag) wird es ein kostenloses Meetup geben, bei dem bekannte Oracle Core Entwickler die letzten News rund um APEX, PL/SQL und Javascript teilen werden.
Zwischen dem 07.05. und dem 09.05. dreht sich dann alles nur noch um die bekannten 4 Buchstaben 

A..P..E..X..

Neben APEX steht natürlich auch wieder SQL, PL/SQL, Datenmodellierung und Javascript im Fokus der Besucher. Highlights rund um das Event werden in den kommenden Wochen über unterschiedliche Blogposts detaillierter kommuniziert, bis dahin schaut euch doch mal die Vortragshighlights und den Bewertungsprozess näher an. Das komplette Programm findet ihr hier:

Mein Highlight dieses Jahr sind definitiv die Beginner Sessions.
Geeignet für Newcomer, Studenten, ehemalige Forms-Entwickler, DBA's und alle die APEX näher kennenlernen möchten.

Copy and Paste to clipboard

Von Tobias Arnhold → 7.17.2018
Well I had the requirement to copy the content of a textarea into the clipboard. There are two ways to do that:

1. Build a dynamic action with custom Javascript code:
Copy Text to Clipboard

Code example - with dynamic action on "Click" and "Execute Javascript Code":
/* Select the text field */
$('#P1_APEX_ITEM').select();

/* Copy the text inside the text field */
document.execCommand("copy");



2. Use an APEX plugin:
Copy to Clipboard (v1.1) - build by Dick Dral



Icons made by Vitaly Gorbachev from www.flaticon.com is licensed by CC 3.0 BY

Creating interactive graphics in APEX with Raphaël (RaphaelJS)

Von Tobias Arnhold → 9.21.2016
Some of you may know of my personal interest for SVG interaction in APEX applications. I have been working with a JavaScript library called "Raphaël" (RaphaelJS, raphael.js or just raphael) for a while now. It is an amazing plugin to create all kind of customized business solutions. But before I show you how I have used Raphaël I tell you how I came to the technology and what happened in the last few years.


5 years ago an APEX developer called "Matt Nolan" created an impressive example how you can use Raphaël for a custom business case: SVG Body Chart Plugin
 

Inspired by his example I started looking for this library called Raphaël.

What does the library do?
It creates dynamic SVG graphics with Javascript and JSON.

Why is it so special?
From an APEX developer point of view it gives you great possibilities to create SVG graphics right from the data out of your database and Raphaël itself brings you several ways to create more or less complex solutions. Just go on reading and you will find out.

How to integrate Raphaël?
Upload the JavaScript file and include it in your APEX page.
/* Implementation: Page > JavaScript > File URLs */
#APP_IMAGES#raphael-min.js
Add a new APEX region from type "Static Content" and add a DIV element:
<div id="svg_example1"></div>
Finally add the Raphaël-JavaScript code below the DIV region:
<script>
  document.addEventListener("DOMContentLoaded", function(){ 
    /* Set up raphael svg area and save it in variable rc (raphael container)*/
    var rc = new Raphael(document.getElementById('svg_example1'), 200, 180);
    
    /* add new svg element */
    var el = rc.path("M 170 120 l 0 -50 l -50 0 l 0 -50 l -50 0 l 0 50 l -50 0 l 0 50 z");
 
    /* Add attributes to element */
    el.attr(
        {
            fill: '#F2621B',
            stroke: '#2F3E66',
            'stroke-width': 10,
            'stroke-linejoin': 'round',
            rotation: -90
        }
    );
 }, false);
</script>

Result:


Who made this library?
The developer behind Raphaël is Dmitry Baranovskiy. Compared to the APEX community he is the Patrick Wolf for SVG solutions using JavaScript. At least in my mind. :)
After the success of Raphaël he joined Adobe. There he created an library called Snap which is quite similar to Raphael and real powerful. Unfortunately it seems that the Snap library is not further developed anymore. The last release is from 2 years ago.

Support?
The last Raphael release is from July 2016. Having questions use "Stack Overflow".

Why not creating the same kind of solution as Matt did?
It took me a while before I had the time thinking about the possibilities and purpose in business applications. I mean not every developer can create an example as Matt did. So I had some reasons to consider about:

1. No sources available
The typical company does not have SVG graphics to visualize their custom business situations. Mostly they use some advanced Excel files including some graphical parts to visualize their business cases. So if you create an APEX application based on those Excel solutions, the customers want their "beautiful" visualization in the APEX application as well.
For example an "workshop plan".

2. Complexity
It is really complicated to create a SVG graphic for the typical APEX developer.
Interacting with SVG graphics is also not the typical activity for an APEX developer.
Moving an SVG to the database to build it with Raphael is not easy either.
You may have to use Raphaël with other JavaScript libraries to enhance the user experience.

3. Time and Money
The more complex the example the more times it takes creating a result and it will become more expensive in the first run and on future updates.

4. Maintenance
Could a decent APEX developer take my solution and extend it? This is an important question to me.

What did I do?
2 Years ago I created an example application for the DOAG 2014.
There I published several examples how you can use Raphaël on top of an existing image file. I only created a few moving SVG components to interact with the application user.

Advantages:
- It is really easy to integrate.
- You do not need an SVG out of your Excel file to publish it in APEX.
- Less code because of the static background image

Disadvantage
- The image can't be responsive
- It can never be as beautiful as the example from Matt

The solutions looked like this:

Harbor example (Source: marinafuehrer.adac.de)









Bridge example (Source: dresden.de)  
Power grid example (Source: Dirk Witthaut, MPI für Dynamik und Selbstorganisation, ds.mpg.de)




The image, the data and the Raphael code comes directly from inside the database. Published with a PL/SQL procedure:
procedure generate_harbor (in_image_id number)
is
  v_image_filename           varchar2(100);
  v_image_name                varchar2(100);
  v_image_width              number;
  v_image_height               number;
  
  v_background_color varchar2(100);
begin
  s_proc_name := 'RJS_DEMO.GENERATE_HARBOR';
  s_parameter := 'in_image_id: ' || to_char(in_image_id);
  
  s_action := 'Image selection';
  select image_filename, image_name, image_width, image_height
  into   v_image_filename,v_image_name, 
         v_image_width, v_image_height
  from   rjs_image
  where  id = in_image_id;
  
  s_action := 'HTML generation';
  htp.p('
   <style>
    #wrapper {
        position: relative;
        width: ' || v_image_width || 'px;
        height: ' || v_image_height || 'px;
        padding: 0;
        outline: 1px solid #999;
    }
    #wrapper img {
        position: absolute;
        top: 0;
        left: 0;
    }
    #canvas{
        position: absolute;
        top: 0;
        left: 0;
    }
   </style>
   <div id="wrapper">
    <img src="' || v('WORKSPACE_IMAGES') || v_image_filename ||'">
    <div id="canvas">
    </div>
   </div>
   ');
   

  s_action := 'JS open';
  htp.p('
   <script>
    document.addEventListener("DOMContentLoaded", function(){ 
      var canvas = Raphael(document.getElementById("canvas"), ' || v_image_width || ', ' || v_image_height || ');
  ');

  s_action := 'JS data loop';
  for rec_k in (
         select rownum, image_id, coordinate_id, 
                result_type, text, c_x, c_y, c_t, c_x_text, c_y_text
         from vw_rjs_harbor
         where image_id = in_image_id
  ) loop
    
      s_action := 'txt'||rec_k.rownum || ' generation.';
      htp.p ('
        var txt'||rec_k.rownum||' = canvas.text('||(rec_k.c_x_text)||', '||(rec_k.c_y_text)||', "'||rec_k.text||'");
        txt'||rec_k.rownum||'.attr({ "font-size": '||'"9"'||','
                                   || ' "font-family": "Arial, Helvetica, sans-serif",'
                                   || ' "fill": "black",'
                                   || ' transform:"r-'||rec_k.c_t||'"});  
        var box'||rec_k.rownum||' = txt'||rec_k.rownum||'.getBBox();
        var img'||rec_k.rownum||' = canvas.image("'|| v('WORKSPACE_IMAGES')||rec_k.result_type||'.png", '
                                                   || rec_k.c_x||', '||rec_k.c_y||', '||'26'||', '||'19'||')'
                                                   || '.attr({transform:"r-'||rec_k.c_t||'"}).glow({width:1,opacity:0.8});
        txt'||rec_k.rownum||'.toFront();
        ');   

  end loop;
  
  s_action := 'JS close';
  htp.p('
    }, false);
   </script>
  ');

exception
when others then   
      rollback; s_ora_error := sqlerrm;
      s_custom_error := 'Internal error occured. Processing stopped.';
      add_err; commit;raise_application_error(-20001, s_custom_error);
end;
APEX itself needs a region from type: "PL/SQL Dynamic Content"
The source is simple:
RJS_DEMO.GENERATE_HARBOR (:P11_IMAGE_ID);
The result looked like this:
 

From my point of view:
You get a new way publishing data in a decent amount of time and low complexity in the source code.



This was two years ago.

On this years DOAG 2016 I will tell you how you can achieve even more powerful examples.
Using the Raphael extension Mapael for custom map visualizations or how to create an own SVG and convert it real fast towards APEX. And maybe there will come some more...



See you at DOAG.

And for all who will miss the DOAG event.  I plan to publish an open source version of the application. So check apex.world at the end of the year. Maybe 24. of December will be a good date. :)

UILayout for Universal Theme

Von Tobias Arnhold → 1.24.2016
Some of you may know the plugin "UILayout for APEX" I developed in 2011. It is based on the jQuery plugin called "UI Layout"

I'm currently develop a new version running only inside the Universal Theme (UT).  This version is completely redesigned and focused only to work with the UT.



Actually it is quite cool because it supports some really handy features:

APEX Dashboard Competition

Von Tobias Arnhold → 1.17.2016
Liebe APEX Community,

ich bin froh nun endlich die nächste große Sache präsentieren zu können. Wir veranstalten eine APEX Competition nach dem Vorbild der APEX Gaming Competition.

Erschafft eine APEX Dashboard Anwendung.

Kurz zusammengefasst:
Erstellt bis zum 01.04.2016 eine APEX Universal Theme Anwendung mit einer Seite die auf Basis eines vorgefertigten Sets von Daten, die ultimative Dashboard Erfahrung liefert.

Was bringt euch die Teilnahme?
Es gibt geniale Preise vom ersten bis zum zehnten Platz. Aber auch unabhängig davon, könnt ihr zeigen was ihr drauf habt um euren Weg zum nächsten APEX Superstar zu ebnen.

Alle Details rund um den Wettbewerb findet ihr hier: apexcompetition.org




Beloved APEX community.

I am proud to finally present the next big step. We, the German APEX community, present an APEX competition similar to the American competition last year.

Create a phenomenal APEX Dashboard application and show what is possible.

Short summary:
You have time until the 01.04.2016 to create an one paged APEX Universal Theme application. You have to use a preconfigured set of data and all you need to create is the ultimate dashboard experience.

What can you win?
There are great prices from first to 10th place. Except the glory and honor you just might become the next APEX superstar.

All details about the competition can be found here: apexcompetition.org




Ps.:
Mein Dank gilt allen Helfern und Sponsoren die diesen Wettbewerb möglich gemacht haben.

Das war 2015 und nun?

Von Tobias Arnhold → 12.20.2015
In meinem letzten Blogpost für dieses Jahr, möchte ich noch einmal kurz auf alle Highlights in 2015 eingehen. Ich wünsche viel Spaß beim Revue passieren lassen! :)

  1. Das war 2015
    1. APEX 5.0
    2. APEX Webseitenupdate
    3. APEX CONNECT
    4. APEX SUMMERSCHOOL
    5. APEX Competition
    6. APEX Community Webseite
    7. DOAG Konferenz
    8. Abräumer des Jahres
    9. Ausblick auf 2016

APEX CONNECT 2016 und das HH24:MI Dilemma

Von Tobias Arnhold → 12.12.2015
Als ich das Vortragsprogramm der APEX CONNECT 2016 gelesen habe, musste ich mich doch kurz wundern...

Oracle JET Charts - Do we need alternatives anymore?

Von Tobias Arnhold → 11.11.2015
After I looked through the chart types supported by the new Oracle JET framework I asked myself if we need other chart plugins like D3JS or RaphaelJS in future APEX releases anymore?

The answer is: Yes in special cases.

My supposition is that we can use all available JET charts in one of the next versions of Oracle APEX.

Now I will describe the "special case" with two examples where other charting frameworks still make sense:

Kostenpflichtige Erweiterungen für APEX

Von Tobias Arnhold → 11.04.2015
Bei dem letzten APEX Meetup in Frankfurt kam eine Frage zur Erweiterbarkeit von APEX auf.
Hierbei ging es darum zu klären was sich besser eignet:
  - Kaufsoftware
  - Opensource Software
  - Eigenentwicklung

Die Frage was sich besser eignet hängt von unterschiedlichen Faktoren ab, die ich nicht Heute im Detail erklären werde.

Ziel im heutigen Blogpost ist es, eine vollständige Liste an möglicher Kaufsoftware Erweiterungen für APEX aufzuzeigen, ohne eine Wertung der jeweiligen Software Lösung vorzunehmen.

Pager Designer Plugin Xplug

Von Tobias Arnhold → 11.03.2015
The new APEX Page Designer is a great tool in doing your development work faster then ever. Actually I only discovered two more or less annoying things so far.

1. Doing "mouse miles" from the left side to the right side.
The new Grid Layout takes much space especially on the big screens. When you access an item on the left side you need to move your mouse to the right and edit the stuff you need to change.
So why having the right side not directly beside the left side?
A new APEX star on the horizon "Filip Van Vooren" has created a nice plugin called Xplug and this one is moving the Grid Layout to the right side. The plugin is available for Chrome and Firefox.


I guess this will only be a temporarily solution because in my opinion APEX 5.1 will include a customization part inside the Page Designer where you can do this kind of stuff.

2. Switch between next and previous pages
Currently we don't have the Previous/Next page buttons in the page designer. Luckily Filip also fixed this in Xplug.

APEX 4.2

APEX 5 - Page Designer

APEX 5 - Page Designer with Xplug


Imho:
Give it a try and delete it if you don't like it.

APEX Connect 2015 - Review

Von Tobias Arnhold → 6.13.2015
Die APEX Connect 2015 (#apexconnect15) war die erste ihrer Art in Deutschland. Eine Konferenz bei der es nur um Oracle APEX ging.


Das waren die Fakten:
 - 2 Tage voll gepackt mit Themen rund um Application Express
 - 4 Vortragsstreams
 - Die Konferenz war ausverkauft (rund 250 APEX Enthusiasten)
 - TOP Developer aus dem In- und Ausland

Was sind die Eindrücke die ich mitnehme?
 - Die Organisation rund um das Event war TOP
 - Die technischen Möglichkeiten vor Ort waren angemessen
 - Networking zu jeder Zeit in sehr hoher Qualität möglich (In den Pausen, Während der Vorträge, bei der Abendveranstaltung)
 - Viele bekannte Gesichter und umso mehr Neue die ich mir nun einprägen muss. :)
 - Alle Vortragenden haben alles gegeben, wenngleich die Qualität doch variiert hat
 - Wo war Joel?

Meine persönlichen Highlights:
Ich selbst habe natürlich auch einen Vortrag zum Thema "Plug-Ins maßgerecht verwenden" gehalten. Wobei die Konkurrenz mit einem Parallelvortrag von Shakeeb Rahman zum Thema "Universal Theme" natürlich extrem hoch war. So muss es auch sein, ich war ja schließlich auf der APEX Connect und nicht auf der DOAG bei der es nur einen APEX Track gibt. ;)

Am Abend hatte ich dann die Ehre den ersten APEX Community Award an Carsten Czarski zu vergeben. Eine Tradition die nur der Anfang sein kann.

Ré­su­mé:
Ein perfekter Start mit viel Qualität und Spaß. Ich werde dieses Event so schnell nicht vergessen.

Wie gehts weiter?
Das nächste Großereignis wäre dann die DOAG 2015 in Nürnberg.
Nächstes Jahr zieht die APEX Connect von Düsseldorf nach Berlin (7. bis 9. Juni 2016). Ich bin gespannt ob wir da 400er Marke knacken! :)

Ps.:
Hier sind die Bilder zur Veranstaltung: apex.doag.org und die offizielle DOAG Review




APEX Connect Vortrag: Plug-Ins maßgerecht verwenden

Von Tobias Arnhold → 6.07.2015
SAVE THE DATE: Am Dienstag dem 09.06. zwischen 11:00 - 11:45 halte ich meinen Vortrag.

Wie so oft habe ich auch für diesen Vortrag eine individuell zusammengestellte APEX Anwendung entwickelt, anhand dessen ich die Präsentation halten werden.

Zusammengefasst:
#NOPOWERPOINT, #APEXONLY, #APEXPLUGINS

Der Vortrag eignet sich für Einsteiger wie Fortgeschrittene. Ich werde anhand unterschiedlichster Plug-Ins auf die Vorteile und Gefahren aufmerksam machen.

Also schaut rein und genießt die Show! :)

Ps.: Für Alle die nicht warten können, hier schon mal zwei Screenshots von der Anwendung:
 



APEX CONNECT: Noch 59 Tage (1.428 Stunden)

Von Tobias Arnhold → 4.10.2015
Die APEX CONNECT rückt immer näher.

Viele Vortragende erstellen ihre Vorträge immer kurz vor knapp. Da ich aufgehört habe APEX mit Hilfe von PowerPoint zu präsentieren, muss ich jetzt schon loslegen um Stück für Stück die optimale Präsentations-Beispiel-Anwendung aufzubauen.

Meine Präsentation wird sich um die maßgerechte Verwendung von APEX Plug-Ins drehen.
Details zum Vortrag:


Ziel ist es, einen realistischen Blick auf Plug-Ins zu vermitteln und Ihnen die atemberaubenden Möglichkeiten, aber auch die Gefahren anhand von realen Beispielen aufzuzeigen.

Hier ein paar erste Screenshots:

Es wird ein großartiges Event das kein APEX Nutzer im deutschsprachigen Raum verpassen sollte.
Ich freu mich alte Bekannte und ganze neue APEX Enthusiasten kennenzulernen.

APEX, HTML und Jahresausklang...

Von Tobias Arnhold → 12.05.2014
Die letzten Wochen waren verdammt arbeitsintensiv und es wird bis Weihnachten nicht viel besser werden. Meetings, Telko's, PL/SQL, SQL, APEX alles verpackt in unterschiedlichsten Projekten.

Umso mehr waren die 3 Tage #DOAG2014 eine gute Erholungspause und eine Quelle für neue Motivation und Ideen.

Mein eigener Vortrag zum Thema "Dynamisches Arbeiten mit Grafiken in APEX" kam sehr gut an und zeigt einmal mehr das APEX Enthusiasten auch am letzten Tag 09:00 Uhr bereit sind sich weiterzuentwickeln. ;)

Für Alle die es verpasst haben oder gar nicht auf der DOAG waren. Habe ich eine Version der Anwendung auf apex.oracle.com hochgeladen: https://apex.oracle.com/pls/apex/f?p=78451

Wenn jemand noch Interesse haben sollte, kann er sich gern bei mir melden.

Auf der kommenden #APEXConnect werde ich ebenfalls wieder über Plugins berichten und werde meinen Fokus auf neue WEB-Techniken setzen.

Eine Technik wurde im letzten APEX Community Tipp bereits näher beschrieben: D3js" in APEX-Anwendungen integrieren

Selbst wenn Sie kein Interesse an der gezeigten Technik haben, so ist die beschriebene APEX Integration allemal sehr informativ und lehrreich.

Außerdem habe ich auf Twitter noch einer sehr interessanten Link zu den besten Javascript Erweiterungen in 2014 gefunden (Dank an ).

Das zeigt einmal mehr was heutzutage alles möglich ist und verleiht einem das Gefühl wieder rumspielen zu wollen, wie damals unter APEX 3 mit AJAX.

Ps: Denkt dran Morgen ist Nikolaus https://apex.oracle.com/pls/apex/f?p=25787
APEX-AT-WORK no image

Veranstaltungs-News

Von Tobias Arnhold → 9.17.2014
Am 26. September ist das erste APEX Meetup Treffen in Frankfurt:
http://www.meetup.com/orclapex-fra/events/207768912/

Am 05. November halte ich einen Vortrag zum Thema Plugins und Reporting in Bonn:
http://www.orbit.de/unternehmen/service/veranstaltungen/#c1398
Weitere Vorträge werden von Denes Kubicek & Frank Weyher gehalten.

DOAG 2014 im November:
http://www.doag.org/events/konferenzen/doag-2014.html
http://www.apex-at-work.com/2014/09/doag-2014-vortrag-zum-thema-dynamisches.html
 
-------------------------------------------------------------------------------------------------------------

Ich sah gerade noch einen Blogpost zum Thema "Warum ist APEX so GEIL!?".
Ok der Titel war etwas besser formuliert :)
http://www.explorer-development.uk.com/7-things-about-apex-your-boss-needs-to-know/
APEX-AT-WORK no image

Update an APEX tree dynamically

Von Tobias Arnhold → 12.01.2013
I was asked by an APEX developer if it is possible to dynamically update an APEX tree by changing an APEX item.

Example select:
select case when connect_by_isleaf = 1 then 0 when level = 1 then 1 else -1 end as status,
       level,
       ENAME as title,
       NULL  as icon,
       EMPNO as value,
       ENAME as tooltip,
       NULL  as link
from EMP
start with (:P1_MGR is null AND MGR is null OR :P1_MGR is not null and MGR = :P1_MGR)
connect by prior EMPNO = MGR
order siblings by ENAME


As far as I know APEX has no out of the box function for that. The dynamic action to refresh reports doesn't work with trees. Or am I wrong here?
You can follow different workarounds no one of them will fulfill all your hopes:

1. Wait for APEX 5.0 maybe the APEX team will include a dynamic tree update functionality?
2. Build some custom JS code to dynamically change the tree.
3. Don't make it dynamically. Submit the page after you have changed the APEX item.
4. Use a third party solution for example: dhtmlx tree
5. Build your own tree solution (plug-in).

I would tend to solution 3 and would wait for the next version of APEX. If the customer doesn't accept it and would pay the more efforts I would tend to a third party solution.  

Update 03.12.2013:
Take a look at Tom's blog he made a couple of really good tree based blog posts.
APEX-AT-WORK no image

UILayout and S3Slider Plugin - Usability Update

Von Tobias Arnhold → 9.19.2012
After a lot of mails and requests I decided to create an example application and an extended documentation to each of the plugins. It will be published in the next weeks.

UILayout for APEX:
http://www.apex-plugin.com/oracle-apex-plugins/dynamic-action-plugin/uilayout-part-1-initialize_77.html
S3Slider for APEX
http://www.apex-plugin.com/oracle-apex-plugins/region-plugin/s3slider-for-apex_165.html



Cheers
Tobias

IR Extender

Von Tobias Arnhold → 2.13.2012
I'm working on a new plug-in called IR Extender. With this plug-in you will get more control about your Interactive Report.

- Default Filter Handling
Should your customized IR show all filters even if they are default?
I added a blog about this topic before: http://www.apex-at-work.com/2011/08/irr-remove-single-rule.html  The described solutions will be part of the plug-in.


- Action Menu Extension
Based on the great idea from Jarola I'm currently working on a more advanced way adding individual entries and sub menu's to your Interactive Report. All will be controlled by the plug-in.

At the moment I have a preview image which gives you a hint about what will come:

I added to more entries inside the main control
One is a simple entry with some javascript action and the other one is a sub menu entry inlcuding a sub menu with two extra entries.

Tobias

Update 14.02.2012
I created a first version of the "Action Menu Extension":
http://apex.oracle.com/pls/apex/f?p=65560:20

Update 18.02.2012
I will add two more functionalities to the plug-in.
 - Custom delete of an entry
 - Move of an entry to another position
 - IR fix which is useful in customized layouts like ExtJS and so on

I just saw a similar plug-in published on http://www.apex-plugin.com/ which seems to use a similar technology as I do. It is also based on the extension from Jarola: https://forums.oracle.com/forums/thread.jspa?threadID=2344657&tstart=30
Even so that there is a plug-in similar to mine I still will go on with the development.

Sparklines für APEX

Von Tobias Arnhold → 1.25.2012
Ich habe in den letzten Tagen meine Plugin-Applikation aktualisiert. Neben den altbewährten Beispielen, findet Ihr nun auch die Integration von Sparklines und eines Image Slider Beispiels.

Das Image Slider Plugin geht im Zuge meines DOAG Artikels online. Wer schon vorab Interesse am Plugin hegt, kann sich gern bei mir melden.

Nachtrag 26.01.2012:
Ich habe den Artikel inhaltlich endlich fertig bekommen und kann nun beruhigt ein paar kleine Feinschliffe vornehmen. Nach 10 Stunden Arbeit, erstellt sich so ein Artikel echt nicht von Selbst. :)

Das Sparkline Plugin gibt es bei DOAG Regionaltreffen zu haben, bei denen ich die Anwendung "Logbuch - Die Plugin App" präsentiere. Aktuell sind wieder welche im März in Dresden und Mannheim geplant.

 Hier ist der Link zur Anwendung: http://apex.oracle.com/pls/apex/f?p=65560:1

APEX-AT-WORK no image

Next image plug-in?

Von Tobias Arnhold → 1.22.2012
After I created the source for the image slider plug-in. I think I can use it for any slider/gallery technique I like.

Now I'm thinking which jQuery image solution could be the next APEX plug-in?
What do you think? Or do you even have a better idea?

http://www.twospy.com/galleriffic/example-2.html















http://coffeescripter.com/code/ad-gallery/
 















http://css-tricks.com/examples/MovingBoxes/










http://css-tricks.com/examples/FeaturedContentSlider/