Last week, May 25, marked the 1st anniversary of the passing of our dear friend and mentor, Joel Kallman. It's hard to believe that an entire year has gone by, and with conference season upon us, his presence continues to be sorely missed.
So while we very much look forward to our first in-person Kscope in over two years, we know the experience will likely be a little bittersweet.
But with the return of warmer weather here in Montreal, we *are* looking forward to both Ascend and Kscope, being back in our offices in beautiful Old Montreal, and we're very excited to be starting up some innovative projects we can't wait to tell you about.
So whether you're about to welcome summer or hunker down for the start of winter (Southern hemisphere, we see you, too), thanks for reading; we're so glad you're here.
In today's edition
A tip straight from Insum's own StackOverflow channel.
APEX at work: Get a glimpse of how our client uses APEX for their fleet management.
A new #orclapex e-Book.
Community News: Things that caught our attention in the Oracle APEX community.
Challenge coins and a $100 off Kscope discount code.
Upcoming shows: See what's new this week on our Insum YouTube channel.
Tips from Insum's StackOverflow
We've got some gems hidden in our own private StackOverflow channel we want to share! In the coming weeks, Elisabeth J. Ashley will be curating some "asked and answered" questions that you may have had yourself.
HOW DO I CHANGE THE FIRST DAY OF THE WEEK ON THE DEFAULT APEX CALENDAR ITEM?
By default, APEX Calendar regions use Sunday as the first day of the week. While there is a setting that allows you to include or exclude weekends, there is no declarative way to show the entire week, but have it start on Monday. But we've got a trick!
1) In Page Designer, select your calendar region
2) Click on Attributes, and add this code under JavaScript Initialization Code
function initialiseCalendar(config){
var mondayDayIndex = 1;
config.firstDay = mondayDayIndex;
return config;
}
3) Run your page, and voilà!
Monthly calendar with weeks starting Sunday
Monthly calendar with weeks starting Monday
Fleet Management with APEX
In a recent tweet, Insum client and Wilson Transportation & Leasing Group's VP of IT Delivery, Giovani Cani, shared the beauty of APEX Map Components in a real-world application assisting his fleet management teams.
For a limited time, you can get Dietmar's newly published book for $1.99USD in the Amazon Kindle store. And pssst, a little birdie told me I had a teeeeeeeeeenie little part in it 😀 (ok, just in the Acknowledgements, but I'll take it!)
And hey, we've still got that $100 discount on regular price registrations for you. Use code INSUM2022 when registering.
On the Insum YouTube Channel
On last week's APEX Instant Tips, Hayden and Anton explored how to layer formatting in Interactive Reports and deal with the mysteries of responsive UI.
Up next
Feuertips with Steven Feuerstein: When functions are deterministic