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!

Apex 5.1: Theme Roller does not work

User_QQ6DMJul 13 2017 — edited Jul 14 2017

Hello.

I'm Apex student and I recently realized that the Theme Roller from my distribution is not working. I click the button and nothing happens.

I have a machine with Windows Server 2003 R2 and Oracle database 11g.

I created another workspace for testing and the problem persists. I accessed several workspaces from various computers and the problem happens at all.

Recently I tried to apply the update patch to version 5.2, later I figured out that 11g distribution is not "patchable". Apex keep working normally and I can't tell if Theme Roller was working before this upgrade attempt.

I also have autoNumeric.js (https://github.com/autoNumeric/autoNumeric) installed on one of the workspaces but not at all.

Here's the error found on Chrome console:

VM73:331 Uncaught TypeError: Cannot read property 'busy' of undefined at Function.$.universalThemeRoller (eval at globalEval (jquery-2.2.3.min.js:2), <anonymous>:331:29) at c (devToolbar.min.js:1) at Object.themeRoller (devToolbar.min.js:1) at HTMLButtonElement.<anonymous> (devToolbar.min.js:1) at HTMLButtonElement.dispatch (jquery-2.2.3.min.js:3) at HTMLButtonElement.r.handle (jquery-2.2.3.min.js:3)

if(firstArgumentType === "object" || firstArgumentType === "undefined") {

            _init(utrArguments[0]);

        } else if(firstArgumentType === "string") {

            switch(utrArguments[0]){

                case "open":

                    if (!utr.busy) {        <--------------------------------------------------------------------- Error here

                        if (!utr.opened) {

                            var lSpinner$ = apex.util.showSpinner();

                            var load = function() {

                                _open();

                                setTimeout(function() {

                                    lSpinner$.remove();

                                }, 1500);

                            };

                            _importRequiredFiles(load);

                        } else {

                            //TODO UTR is already opened. New settings were not applyed. Close the dialog and open it with the new settings

                        }

                    }

                    break;

                case "close":

                    if (!utr.busy) {

                        if (utr.opened) {

                            _close();

                        } else {

                            //TODO UTR is already closed.

Can someone help me please? I searched everywhere and did not find anyone with the same problem.

Thanks for any reply.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 10 2017
Added on Jul 13 2017
0 comments
398 views