Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to change the text "Choose File" from Data Loading

PhilMan2Jul 31 2023

I'm using Apex 21.2 on at 21.C database.

I created a page using the Data Loading template and the Data Load Definition in Shared Components. It all works well. I'd just like to change the text of the “Choose File" button in the Drag And Drop area". I can't locate the “Choose File” button. I see the “Clear” and “Load Data” buttons in the Button Bar region, but I don't know where the “Choose File" button resides. I tried changing it by including the following in the “Function and Global Variable Declaration” section of the page. But that didn't work either.

$('.apex-item-filedrop-heading').each(function() {
var text = $(this).text();
$(this).text(text.replace('Choose File', '2. Choose File'));
$(this).attr('style', 'display: inline');
});

Thanks for looking at this.

This post has been answered by Louis Moreaux on Aug 1 2023
Jump to Answer
Comments
Post Details
Added on Jul 31 2023
4 comments
834 views