Good morning,
I am running APEX 5.02 on a 12.1c Database.
I have read @"John Snyders-Oracle" blog post on the jQuery modal widget and used the code to open and close the modal with simple animations like SlideUp, FadeIn from the jQuery library but that seems to be the extent of the use. This works without issue.
I am trying to adapt the code to use the jQuery UI animation (which there are more options) for example explode, bounce etc. and I just can not get it to work.
A few examples I maybe would have expected to work based on Johns article :
1)
$("body").on("dialogcreate", ".ui-dialog--apex", function(e) {
$(this).children(".ui-dialog-content").show( "explode", {pieces: 16}, 2000 );
});
});
2)
$("body").on("dialogcreate", ".ui-dialog--apex", function(e) {
$(this).children(".ui-dialog-content")
.dialog({
autoOpen: false,
hide: 'fold',
show: 'blind'
});
3)
$("body").on("dialogcreate", ".ui-dialog--apex", function(e) {
$(this).children(".ui-dialog-content")
.dialog({
show: {effect: 'fade', duration: 250}
hide: {effect: 'fade', duration: 500}
});
Any ideas anyone?
Thanks in advance.