Friday 22 February 2013

A great addition in the Oracle ADF Books Ecosystem

Almost everyone who has ever Googled anything about Oracle ADF, has at one point or another landed on a Jubinesh blog post!
Now it's time to get a really taste of his expertise in one book:



Tuesday 29 March 2011

ADF Essential Skills - Get Better at it!

Grant Ronald has announced a new set of 11 sample tasks, which are available on OTN on the ADF Insider Essentials page and the ADF Insider Essentials Tasks page. There is also a YouTube channel  - ADFInsiderEssentials - with ADF content! Check it out!!


Thursday 24 March 2011

Custom validation for Oracle Content Server

I have been asked several times by customers what is the appropriate way to add a custom JavaScript validation when checking in a new Document or updating an existing one in content server. My answer is this:
Create a custom component and add a new resource. The name should be "clear_checkin_flags". Inside call on the super.clear_checkin_flags and then add your own checks. Here's an example:
<@dynamichtml clear_checkin_flags@>
   <$include super.clear_checkin_flags$>
   <$if strEquals(dDocType,"MyDocumentType")$>
       alert("The document type is not correct!");
   <$endif$>
<@end@>
Note that when overwriting the clear_checkin_flags you are already inside a <script> tag so you shouldn't repeat it in your code!

Tuesday 22 March 2011

Amcharts stock chart integration with Application Express

This is a very interesting integration case posted by George Triantafyllidis, fellow ApEx enthusiast. Please find original post here.


AmCharts Stock Chart's main purpose is to display financial charts.The features include a very comfortable scrollbar, data grouping into longer periods, displaying of data at irregular intervals, etc.

It is very simple to integrate Stock Chart into APEX applications. I have created a simple demo with instructions.
Using Stock Chart's javascript library you can update charts on the fly as well as change the underlying data.
Take a look at the full features of Stock Chart by visiting AmCharts site.