I am using Eclipse and have gotten JQM type dialogs to work in simple applications running in an AVD and have also used the approach given in to get a workable custom dialog:
Display Yes and No buttons instead of OK and Cancel in Confirm box?
In my proper application, however, I cannot get any form of dialog box to display.
Most of the javascript code for my application is contained in an "on pageshow" type function, i.e. within:
$("#mainPage").on("pageshow", function(e) {
}
at the bottom of the body of my index.html file. And it is from within this function that I am trying to display a custom dialog. Is this the problem? The code simply skips over any attempt to call the dialog and continues to run without any errors.
I can incorporate more code (not the full huge app), but don't want to confuse the issue too much.