Shinyjqui: jQuery UI Interactions and Effects for Shiny









Bootstrap Modal Confirmation Dialog On Form Submit

Jquery ui confirm dialog example Let's give edit form an id and initialize confirm dialog run into the following problem with Bootstrap's modal.
bootstrap modal confirmation dialog on form submit


Release Notes

To learn more about PSEs visit the Oracle APEX 21.2 Known Issues page or the Prior Release positions across page templates
oracle apex release notes


1. Atlassian User Interface (AUI) Documentation

03-Dec-2009 1.5.1 Finding known issues and workarounds . ... Dialog — Creates a modal box that displays additional functionality without leaving the ...
AUI . documentation PDF


oracle-application-express-release-notes.pdf

If you had references to individual jQuery UI css files you can remove them. See Also: JET v4.2.0 Release Notes. Known Issues for RESTful Services and Oracle 
oracle application express release notes





jQuery & jQuery UI Documentation

isn't finished loading yet when you first try to run your code. To circumvent both problems
documentation


Release Notes

about PSEs visit the Oracle APEX 21.1 Known Issues page or the Prior Release Native Application Express components that use jQuery UI will continue to ...
oracle application express release notes


Oracle Application Express Release Notes

04-Aug-2013 However this will not work if a PL/SQL based region sets ... have included components of jQuery UI that are not included by default by.
e


jquery-ui-library.pdf

download and put jquery-ui.css and jquery-ui.js (and jquery.js) in a folder (Selector) [Default: "body"] Which element the dialog (and overlay
jquery ui library





shinyjqui: 'jQuery UI' Interactions and Effects for Shiny

03-Feb-2022 BugReports https://github.com/yang-tang/shinyjqui/issues. RoxygenNote 7.1.2 ... A modified shiny modal dialog UI with its content draggable.
shinyjqui


Package 'shiny'

14-Aug-2017 BugReports https://github.com/rstudio/shiny/issues. Collate 'app. ... jQuery Foundation [cph] (jQuery library and jQuery UI library).
shiny


214352 shinyjqui: jQuery UI Interactions and Effects for Shiny

Package 'shinyjqui"

October 14, 2022

TypePackage

Title"jQuery UI" Interactions and Effects for Shiny

Version0.4.1

MaintainerYang Tang

DescriptionAn extension to shiny that brings interactions and animation effects from "jQuery UI" library.

LicenseMIT + file LICENSE

EncodingUTF-8

DependsR (>= 3.2.0)

Importsshiny (>= 1.5.0), htmltools, htmlwidgets, jsonlite, rlang Suggestsggplot2, highcharter, knitr, markdown, rmarkdown, plotly

URLhttps://github.com/yang-tang/shinyjqui,

https://yang-tang.github.io/shinyjqui/ BugReportshttps://github.com/yang-tang/shinyjqui/issues

RoxygenNote7.1.2

VignetteBuilderknitr

NeedsCompilationno

AuthorYang Tang [aut, cre]

RepositoryCRAN

Date/Publication2022-02-03 07:00:02 UTC

Rtopics documented:

Animation_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 Class_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 draggableModalDialog . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 get_jqui_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Interactions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 jqui_bookmarking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 1

2Animation_effects

jqui_icon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 jqui_position . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 orderInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 selectableTableOutput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 sortableCheckboxGroupInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 sortableRadioButtons . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 sortableTableOutput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 sortableTabsetPanel . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 updateOrderInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 Index21Animation_effectsAnimation effects.Description

Allow element(s) to show animation effects.

•jqui_effect(): Apply an animation effect to matched element(s). •jqui_hide(): Hide the matched element(s) with animation effect. •jqui_show(): Display the matched element(s) with animation effect. •jqui_toggle(): Display or hide the matched element(s) with animation effect. Usage jqui_effect(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_show(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_hide(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_toggle(ui, effect, options = NULL, duration = 400, complete = NULL)

Arguments

uiThe target ui element(s) to be manipulated. Can be

A string of

jQuery_selector A JS() wrapped ja vascripte xpressionthat returns a jQuery object effectA string indicating whichanimation ef fectto use for the transition. optionsA list of effect-specificproperties and easing . durationA string or number determining how long the animation will run. completeA function to call once the animation is complete, called once per matched ele- ment.

Class_effects3

Details

These functions are R wrappers ofeffect(),hide(),show()andtoggle()from jQuery UI li- brary. They should be used inserverof a shiny document.

Examples

## Not run: # in shiny ui create a plot plotOutput(?foo?) # in shiny server apply a?bounce?effect to the plot jqui_effect(?#foo?,?bounce?) # in shiny server hide the plot with a?fold?effect jqui_hide(?#foo?,?fold?) # in shiny server show the plot with a?blind?effect jqui_show(?#foo?,?blind?) ## End(Not run)Class_effectsClass effects.Description Manipulate specified class(es) to matched elements while animating all style changes. •jqui_add_class(): Add class(es). •jqui_remove_class(): Remove class(es). •jqui_switch_class(): Switch class(es). Usage jqui_add_class( ui, className, duration = 400, easing = "swing", complete = NULL jqui_remove_class( ui, className, duration = 400, easing = "swing",

4Class_effects

complete = NULL jqui_switch_class( ui, removeClassName, addClassName, duration = 400, easing = "swing", complete = NULL

Arguments

uiThe target ui element(s) to be manipulated. Can be

A string of

jQuery_selector A JS() wrapped ja vascripte xpressionthat returns a jQuery object classNameOne or more class names (space separated) to be added to or removed from the class attribute of each matched element. durationA string or number determining how long the animation will run. easingA string indicating whicheasing function to use for the transition. completeA js function to call once the animation is complete, called once per matched element. removeClassName One or more class names (space separated) to be removed from the class at- tribute of each matched element. addClassNameOne or more class names (space separated) to be added to the class attribute of each matched element.

Details

These functions are the R wrappers of

addClass() remo veClass() and switchClass() from jQuery UI library. They should be used inserverof a shiny app.

Examples

## Not run: # in shiny ui create a span tags$span(id =?foo?,?class animation demo?) # in shiny server add class?lead?to the span jqui_add_class(?#foo?, className =?lead?) ## End(Not run) draggableModalDialog5draggableModalDialogCreate a draggable modal dialog UIDescription

This creates the UI for a modal dialog similar to

shin y::modalDialog e xceptits content is dragg able. Usage draggableModalDialog( title = NULL, footer = shiny::modalButton("Dismiss"), size = c("m", "s", "l"), easyClose = FALSE, fade = TRUE

Arguments

...UI elements for the body of the modal dialog box. titleAn optional title for the dialog. footerUI for footer. UseNULLfor no footer. sizeOne of"s"for small,"m"(the default) for medium, or"l"for large. easyCloseIfTRUE, the modal dialog can be dismissed by clicking outside the dialog box, or be pressing the Escape key. IfFALSE(the default), the modal dialog can"t be dismissed in those ways; instead it must be dismissed by clicking on a modalButton(), or from a call toremoveModal()on the server. fadeIfFALSE, the modal dialog will have no fade-in animation (it will simply appear rather than fade in to view). Value

A modified shiny modal dialog UI with its content draggable.get_jqui_effectsGet available animation effects.Description

Use this function to get all animation effects in jQuery UI. Usage get_jqui_effects()

6Interactions

Value A character vector of effect namesInteractionsMouse interactionsDescription Attachmouse-basedinteractionstoshinyhtmltags, shinyinput/outputwidgetsorstatichtmlwidgets and provide ways to manipulate them. The interactions include: dragg able : Allow elements to be moved using the mouse. droppable : Create targets for draggable elements. resizable : Change the size of an element using the mouse. selectable

Package 'shinyjqui"

October 14, 2022

TypePackage

Title"jQuery UI" Interactions and Effects for Shiny

Version0.4.1

MaintainerYang Tang

DescriptionAn extension to shiny that brings interactions and animation effects from "jQuery UI" library.

LicenseMIT + file LICENSE

EncodingUTF-8

DependsR (>= 3.2.0)

Importsshiny (>= 1.5.0), htmltools, htmlwidgets, jsonlite, rlang Suggestsggplot2, highcharter, knitr, markdown, rmarkdown, plotly

URLhttps://github.com/yang-tang/shinyjqui,

https://yang-tang.github.io/shinyjqui/ BugReportshttps://github.com/yang-tang/shinyjqui/issues

RoxygenNote7.1.2

VignetteBuilderknitr

NeedsCompilationno

AuthorYang Tang [aut, cre]

RepositoryCRAN

Date/Publication2022-02-03 07:00:02 UTC

Rtopics documented:

Animation_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 Class_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 draggableModalDialog . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 get_jqui_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Interactions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 jqui_bookmarking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 1

2Animation_effects

jqui_icon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 jqui_position . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 orderInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 selectableTableOutput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 sortableCheckboxGroupInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 sortableRadioButtons . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 sortableTableOutput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 sortableTabsetPanel . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 updateOrderInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 Index21Animation_effectsAnimation effects.Description

Allow element(s) to show animation effects.

•jqui_effect(): Apply an animation effect to matched element(s). •jqui_hide(): Hide the matched element(s) with animation effect. •jqui_show(): Display the matched element(s) with animation effect. •jqui_toggle(): Display or hide the matched element(s) with animation effect. Usage jqui_effect(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_show(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_hide(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_toggle(ui, effect, options = NULL, duration = 400, complete = NULL)

Arguments

uiThe target ui element(s) to be manipulated. Can be

A string of

jQuery_selector A JS() wrapped ja vascripte xpressionthat returns a jQuery object effectA string indicating whichanimation ef fectto use for the transition. optionsA list of effect-specificproperties and easing . durationA string or number determining how long the animation will run. completeA function to call once the animation is complete, called once per matched ele- ment.

Class_effects3

Details

These functions are R wrappers ofeffect(),hide(),show()andtoggle()from jQuery UI li- brary. They should be used inserverof a shiny document.

Examples

## Not run: # in shiny ui create a plot plotOutput(?foo?) # in shiny server apply a?bounce?effect to the plot jqui_effect(?#foo?,?bounce?) # in shiny server hide the plot with a?fold?effect jqui_hide(?#foo?,?fold?) # in shiny server show the plot with a?blind?effect jqui_show(?#foo?,?blind?) ## End(Not run)Class_effectsClass effects.Description Manipulate specified class(es) to matched elements while animating all style changes. •jqui_add_class(): Add class(es). •jqui_remove_class(): Remove class(es). •jqui_switch_class(): Switch class(es). Usage jqui_add_class( ui, className, duration = 400, easing = "swing", complete = NULL jqui_remove_class( ui, className, duration = 400, easing = "swing",

4Class_effects

complete = NULL jqui_switch_class( ui, removeClassName, addClassName, duration = 400, easing = "swing", complete = NULL

Arguments

uiThe target ui element(s) to be manipulated. Can be

A string of

jQuery_selector A JS() wrapped ja vascripte xpressionthat returns a jQuery object classNameOne or more class names (space separated) to be added to or removed from the class attribute of each matched element. durationA string or number determining how long the animation will run. easingA string indicating whicheasing function to use for the transition. completeA js function to call once the animation is complete, called once per matched element. removeClassName One or more class names (space separated) to be removed from the class at- tribute of each matched element. addClassNameOne or more class names (space separated) to be added to the class attribute of each matched element.

Details

These functions are the R wrappers of

addClass() remo veClass() and switchClass() from jQuery UI library. They should be used inserverof a shiny app.

Examples

## Not run: # in shiny ui create a span tags$span(id =?foo?,?class animation demo?) # in shiny server add class?lead?to the span jqui_add_class(?#foo?, className =?lead?) ## End(Not run) draggableModalDialog5draggableModalDialogCreate a draggable modal dialog UIDescription

This creates the UI for a modal dialog similar to

shin y::modalDialog e xceptits content is dragg able. Usage draggableModalDialog( title = NULL, footer = shiny::modalButton("Dismiss"), size = c("m", "s", "l"), easyClose = FALSE, fade = TRUE

Arguments

...UI elements for the body of the modal dialog box. titleAn optional title for the dialog. footerUI for footer. UseNULLfor no footer. sizeOne of"s"for small,"m"(the default) for medium, or"l"for large. easyCloseIfTRUE, the modal dialog can be dismissed by clicking outside the dialog box, or be pressing the Escape key. IfFALSE(the default), the modal dialog can"t be dismissed in those ways; instead it must be dismissed by clicking on a modalButton(), or from a call toremoveModal()on the server. fadeIfFALSE, the modal dialog will have no fade-in animation (it will simply appear rather than fade in to view). Value

A modified shiny modal dialog UI with its content draggable.get_jqui_effectsGet available animation effects.Description

Use this function to get all animation effects in jQuery UI. Usage get_jqui_effects()

6Interactions

Value A character vector of effect namesInteractionsMouse interactionsDescription Attachmouse-basedinteractionstoshinyhtmltags, shinyinput/outputwidgetsorstatichtmlwidgets and provide ways to manipulate them. The interactions include: dragg able : Allow elements to be moved using the mouse. droppable : Create targets for draggable elements. resizable : Change the size of an element using the mouse. selectable