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.